标签: button sencha-touch-2 action
是否可以在不创建新按钮的情况下在运行时更改按钮的操作?
我可以从文档中看到按钮没有动作属性的设置器,如果我写button.action = 'something';它就不起作用。
button.action = 'something';
答案 0 :(得分:0)
我们可以在不创建新按钮的情况下在运行时更改按钮的操作 试试这个:
Ext.getCmp(' button2')。setHandler(function(){alert(" handler is changed");});