Extjs 4监听控制器中网格选择模型的事件
我有一个网格和控制器。 我尝试监听网格的“选择”事件。
代码是:
Ext.define('Icc.controller.Questionnaires', {
extend: 'Ext.app.Controller',
stores: ['Questionnaires'],
models: ['Questionnaire'],
views: ['QuestionnairesGrid'],
init: function() {
this.control({
'mygrid > selectionmodel': {
// do what I need here
}
});
}
});
如何正确完成?
I have a grid and controller for it.
I try listen for 'select' event for the grid.
The code is:
Ext.define('Icc.controller.Questionnaires', {
extend: 'Ext.app.Controller',
stores: ['Questionnaires'],
models: ['Questionnaire'],
views: ['QuestionnairesGrid'],
init: function() {
this.control({
'mygrid > selectionmodel': {
// do what I need here
}
});
}
});
How it can be done correctly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了这样做的方法:
奇怪的是我可以监听网格本身的选择模型事件......
I found the way to do that:
Strange that I can listen events for selection model for the grid itself...