10

実際には、以下の Window でフォームを作成するための ExtJs スクリプトがあります。

var frmAccount = Ext.create('Ext.form.Panel',{
    bodyPadding: 5,
    frame  : true,
    items    :[
    {
        xtype       : 'textfield',
        fieldLabel  : 'Account Number',
        name        : 'accountNum'
    },{
        xtype       : 'textfield',
        fieldLabel  : 'Company',
        name        : 'company'
    },{
        xtype       : 'textfield',
        fieldLabel  : 'Office',
        name        : 'office'
    },{
        xtype       : 'textareafield',
        fieldLabel  : 'Address',
        name        : 'address',
        width       : 350
    },{
        xtype       : 'textfield',
        fieldLabel  : 'City',
        name        : 'city'
    },{
        xtype       : 'textfield',
        fieldLabel  : 'Country',
        name        : 'nation'
    }]
});

var winAddAccount = Ext.create('widget.window',{
    id     : 'addAccount',
    title  : 'Filter Record',
    width  : 400,
    height : 300,
    modal  : true,
    closeAction    : 'hide',
    items  : frmAccount,
    layout : 'fit',
    bodyPadding: 5,
    buttons:[
    {
        text    : 'Find',
        handler: function(){
            //console.log(form value);
        }
    },
    {
        text    : 'Cancel',
        handler: function(){
            winAddAccount.hide();
        }
    }
    ]
});

「検索」ボタンをクリックした後、フォームから値を取得したいだけです。しかし、「検索」ボタンをクリックした後、フォームから値を取得する方法がわかりません。console.logうまくいけば、ハンドラーのスクリプトで値を確認できます。アイデアの解決または提案を手伝ってください。ありがとう。

4

2 に答える 2

30

これを試して

text    : 'Find',
handler: function(btn){
    var win = btn.up('window'),
        form = win.down('form');
    console.log(form.getForm().getValues());
}

さらに、senchaが提供するチュートリアルに目を通して、多くの例を含むAPIを確認することをお勧めします。

特定のフィールドの値のみを取得するには、次のようにします (この例では、フィールドが存在すると仮定しています!)

text    : 'Find',
handler: function(btn){
    var win = btn.up('window'),
        form = win.down('form');
    console.log(form.getForm().findField('NamePropertyValue').getSubmitValue() /*or call getSubmitData() or just getValue()*/);
}
于 2013-02-01T09:08:21.020 に答える
0
handler: function(button) {
  var form = button.up('form').getForm();
  console.log(form.getValues());
  // ...
}
于 2015-06-11T07:39:01.953 に答える