Ext.getCmp('tabs').getForm().on("actioncomplete",
function(from,action){
if(action.type=="submit")
{
console.log(action.result)
}
})
其中
Ext.getCmp('tabs')
是假设有一个id=‘tabs’的FormPanel。而
action.type
就是指事件(action)的类型。目前有两种分别为'submit'和'load'。
王新的博客,Programming... Ruby,Java,Javascript,Ruby On Rails, Agile Development,Scrum,Web Development.
Ext.getCmp('tabs').getForm().on("actioncomplete",
function(from,action){
if(action.type=="submit")
{
console.log(action.result)
}
})
Ext.getCmp('tabs')
action.type
就是指事件(action)的类型。目前有两种分别为'submit'和'load'。
没有评论:
发表评论