我在網格面板中有tbar。我的示例代碼如如何在網格面板的工具欄上獲取表格Extjs
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
}
}
]
我無法讓我的表單提交。我怎麼能這麼感謝:)。
它的工作非常好,非常感謝這麼多:) – DeLe