ExtJS 网格事件处理
考虑这个例子: http://docs. sencha.com/ext-js/4-0/#!/example/grid/binding-with-classes.html 我想在控制器中处理“selectionchange”事件。就像下面的代码:
Ext.define('AM.controller.Users', {
init: function() {
this.control({
'useredit button[action=save]': {
click: this.updateUser
}
});
},
updateUser: function(button) {
console.log('clicked the Save button');
}
});
我应该怎么做? 谢谢
Consider this example:
http://docs.sencha.com/ext-js/4-0/#!/example/grid/binding-with-classes.html
I want handle 'selectionchange' event in the controller. Like following code:
Ext.define('AM.controller.Users', {
init: function() {
this.control({
'useredit button[action=save]': {
click: this.updateUser
}
});
},
updateUser: function(button) {
console.log('clicked the Save button');
}
});
How should I do that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的网格:
你的控制器是:
your grid:
your controller is: