gpt4 book ai didi

model-view-controller - Controller 中网格选择模型的 Extjs 4 监听事件

转载 作者:行者123 更新时间:2023-12-04 08:37:38 26 4
gpt4 key购买 nike

我有一个网格和 Controller 。我尝试监听网格的“选择”事件。

代码是:

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
}
});
}
});

如何正确完成?

最佳答案

我找到了这样做的方法:

init: function() {
this.control({
'questionnairesgrid': {
selectionchange: this.selectionChange
}
});
},

奇怪的是我可以监听网格本身的选择模型事件...

关于model-view-controller - Controller 中网格选择模型的 Extjs 4 监听事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6408625/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com