我正在尝试使用 extjs 4.2 中的 DirectSubmit API 提交表单。
错误信息是:
TypeError: me.form.api.submit 不是一个函数 [Break On This Error]
me.form.api.submit(formInfo.formEl, 回调, 我);
完全相同的代码适用于 Extjs 4.1.1
我注意到代码(直接提交)在 4.2 中发生了变化
这是一个错误吗?有人有同样的问题吗?
我的代码:
Ext.define('ExtMVC.view.MyForm', { 扩展:'Ext.form.Panel',
height: 250,
width: 400,
bodyPadding: 10,
title: 'My Form'
initComponent: function() {
var me = this;
me.initialConfig = Ext.apply({
api: {
submit: 'Actions.Verbis_Processo.update'},
standardSubmit: false
}, me.initialConfig);
Ext.applyIf(me, {
api: {
submit: 'Actions.Verbis_Processo.update'},
items: [
{
xtype: 'textfield',
anchor: '100%',
fieldLabel: 'Label'
},
{
xtype: 'button',
handler: function(button, event) {
button.up('form').getForm().submit();
},
text: 'MyButton'
}
]
});
me.callParent(arguments);
}
});
我在 extdirect 配置中有@formhandler。