3

我在网格面板中有 tbar。我的示例代码像

    tbar:[
            {
                xtype: 'form',
                items: [{
                    xtype: 'filefield',
                    name: 'filefor',
                    labelWidth: 50,
                    allowBlank: false,
                    buttonConfig: {
                        text: 'up...'
                    }
                }]
            }
            ,{
                text: 'add',
                handler:function(){
                        var form = this.up('form').getForm(); // not working
                        form.submit({}); // not working
                }
             }
   ]

我无法提交表单。我怎么能做到这一点非常感谢:)。

4

2 回答 2

3

表单添加按钮的兄弟。您可能想使用.prev而不是.up来访问表单

这是有效的片段

Ext.require([
    'Ext.form.*',
    'Ext.tip.*']);

Ext.onReady(function () {

    Ext.QuickTips.init();
    var f = Ext.create('Ext.form.Panel', {
        renderTo: Ext.getBody(),
        bodyStyle: 'padding: 5px 5px 0 5px;',
        defaults: {
            xtype: 'textfield',
            anchor: '100%',
        },
        html:'text',
        tbar: [{
            xtype: 'form',
            items: [{
                xtype: 'filefield',
                name: 'filefor',
                labelWidth: 50,
                allowBlank: false,
                buttonConfig: {
                    text: 'up...'
                }
            }]
        }, {
            text: 'add',
            handler: function () {
              //var form = this.prev('form').getForm(); // working at extjs4.0.2a
               var form =this.ownerCt.down('form').getForm();// working at extjs 4.2.0
               form.submit({});
            }
        }]

    });
});

对于现场演示, 这里是 jsfiddle 链接

于 2013-06-21T03:12:51.750 回答
2
var form = this.up('form').getForm(); // not working
                    form.submit({}); // not working
change to:
this.ownerCt.down('form').getForm();
于 2013-06-21T03:17:56.117 回答