Extjs 4监听控制器中网格选择模型的事件

发布于 2024-11-16 00:28:25 字数 408 浏览 2 评论 0原文

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

代码是:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼泪淡了忧伤 2024-11-23 00:28:25

我找到了这样做的方法:

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

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

I found the way to do that:

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

Strange that I can listen events for selection model for the grid itself...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文