extjs,如何在表单动作中绑定事件?

时间:2016-03-25 15:17:15

标签: javascript extjs

像这样。但是处理程序不起作用,请使用extjs 3.2.0版,非常感谢

form = new app.modules.form.TableFormView( {
                isCombined : true,
                entryName : "lite.manager.sc.ODG_CLUSTER",
                empiId : "",
                colCount : 1,
                actions : [{id:"toStandby",name:"test1",handler:function()  
                    console.log(111)
                    }},
                    {id:"refresh",name:"test2"}]
            });

1 个答案:

答案 0 :(得分:0)

问题不是很明确,但我认为the example given in the ExtJs documentation可能会对您有所帮助。基本上,表单对象应该扩展Ext.util.Observable。