1

我在 ExtJs 3.3.1 中使用 livegrid,但相信这个问题对 ExtJs 来说是全球性的。商店中的侦听器如何知道事件来自哪个网格?

这是为什么和一些代码。

我在商店有一个监听器,在更新时我想知道在网格中选择了哪些行并暂停事件。这一切都是为了让我可以在网格中进行选择,更新该范围内的字段并更新整个选择中的该字段。选择是在没有复选框的情况下完成的,只需突出显示行。由于该侦听器被许多网格使用,我需要一种方法来从网格侦听器作为参数获取的内容中获取它,但这只是存储、记录和操作

Ext.override(Ext.ux.grid.livegrid.Store, {
    listeners: {
      'update': function(store, record, action) {
        if (action=='commit'){ //each update has 2 actions, an edit and a commit
          var selected = grid.getSelectionModel().getSelections();  //need to know which grid
          if (selected.length>1){ //if more than one row selected
            grid.suspendEvents();
            store.writer.autoSave = false;
            for(var i=0; i < selected.length; i++){
              if (this.fieldChanged) {
                for (var name in this.fieldChanged) { 
                  //get the field changed and update the selection with the value
                  if (selected[i].get(name)!=this.fieldChanged[name]){
                    selected[i].set(name, this.fieldChanged[name]);
                  }
                } 
              }
            }
            grid.resumeEvents();
            store.fireEvent("datachanged", store);
            store.writer.autoSave = true;
          }
        }
        if (action=='edit'){
          this.fieldChanged = record.getChanges()
        }
      }
    }
  });
4

3 回答 3

1

可能有更多的网格使用商店。最好在 Ext Js 4 中观察 Gridpanel 类,如下所示:

//Associate all rendered grids to the store, so that we know which grids use a store.
Ext.util.Observable.observe(Ext.grid.Panel);
Ext.grid.Panel.on('render', function(grid){
    if (!grid.store.associatedGrids){
        grid.store.associatedGrids=[];
    }
    grid.store.associatedGrids.push(grid);
});
于 2012-05-09T18:58:32.337 回答
1

在扩展中会更容易,但也可以在覆盖中完成。

MyGridPanel = Ext.extend(Ext.ux.grid.livegrid.EditorGridPanel, { 
    initComponent: function(){  
        MyGridPanel.superclass.initComponent.call(this);
        this.store.grid = this;
    }
});

编辑 --- 显示如何在覆盖中执行,它不漂亮但很有用。

var oldInit = Ext.ux.grid.livegrid.EditorGridPanel.prototype.initComponent;
Ext.override(Ext.ux.grid.livegrid.EditorGridPanel, {
    initComponent: function(){
        oldInit.call(this);
        this.store.grid = this;
    }
});
于 2012-05-04T23:59:45.793 回答
0

我自己找到了一个解决方案,我覆盖了 livegrid 以在其存储中包含对自身的引用,就像这样

Ext.override(Ext.ux.grid.livegrid.EditorGridPanel, {
    listeners: {
      'afterrender': function(self) {
        this.store.grid = this.id;
      }
    }
  });

然后在我的商店监听器中,我可以参考 store.grid

于 2012-05-04T13:46:59.077 回答