Как получить значение поля формы в событии onclick - PullRequest
0 голосов
/ 13 ноября 2011

Пожалуйста, помогите мне. как я могу получить пользовательский ввод.

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 голосов
/ 14 ноября 2011

Вы можете использовать функцию getValues ​​() для получения значений в поле формы.

...