如何在onclick事件中获取表单字段值

时间:2011-11-13 01:01:21

标签: get field extjs

请帮帮我。我怎样才能获得用户输入。

Mytest.views.Forma = Ext.extend(Ext.Panel, {/*This is a panel which displays all*/

initComponent: function(){

    Ext.apply(this, {/*derive the form*/
        items: [ {
            xtype: 'fieldset',
            id: 'formaFieldset',
            title: '',
            items: [
                {
                    name: 'from',
                    label: 'From'
                }
            ]
        }, 
        {
            xtype: 'button',
            cls: 'btnAction',
            text:'Price Check',
            handler:function(){
                //Here you need to print the values ​​of form fields            
                    }
                });
            }
        } ]
    });
    Mytest.views.Forma.superclass.initComponent.call(this);
}
  });

  Ext.reg('forma', Mytest.views.Forma);

1 个答案:

答案 0 :(得分:0)

您可以使用getValues()函数来获取表单字段中的值。