2011-11-13 11 views
0

私を助けてください。どのように私はユーザーの入力を得ることができます。onclickイベントでフォームフィールド値を取得する方法

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); 

答えて

0

getValues()関数を使用して、フォームフィールドの値を取得できます。

関連する問題