提供了一个“重新配置”事件,该Ext.grid.Panel
事件在任何时候reconfigure()
调用该方法后都会触发。然而,在当前 4.1 版本的 ExtJs 中,RowEditing 插件并没有挂钩这个事件!
看来我们需要自己做繁重的工作。最终的解决方案相当简单,尽管花了几个小时才得出最终的代码。
RowEditing 插件创建了 RowEditor 组件的一个实例(明白了吗?记住这两个是分开的,名称相似但组件不同!)。RowEditing 插件与网格挂钩,连接到必要的事件以了解何时显示行编辑器等。RowEditor 是在行上弹出以在网格中进行内联编辑的可视组件。
起初,我尝试了十几种不同的方式重新配置行编辑器。我尝试调用内部方法、init 方法、resize 方法等……然后我注意到架构的一些优点。有一个对 RowEditor 实例的内部引用,其中包含获取行编辑器和延迟加载(如果需要)的方法。那是关键!
您可以在不破坏 RowEditing 插件的情况下销毁 RowEditor(您不能动态加载/卸载插件),然后重新创建 RowEditor。
还有一个问题,即 Ext 网格的编辑插件为每一列添加了一些扩展方法,getEditor()
用于setEditor()
获取/设置每一列的正确编辑器类型。当您重新配置网格时,任何应用的扩展方法都“消失”(您有一些从未应用过这些方法的新列)。initFieldAccessors()
因此,您还需要通过调用插件上的方法来重新应用这些访问器方法。
这是我的网格面板重新配置事件的处理程序:
/**
* @event reconfigure
* Fires after a reconfigure.
* @param {Ext.grid.Panel} this
* @param {Ext.data.Store} store The store that was passed to the {@link #method-reconfigure} method
* @param {Object[]} columns The column configs that were passed to the {@link #method-reconfigure} method
*/
onReconfigure: function (grid, store, columnConfigs) {
var columns = grid.headerCt.getGridColumns(),
rowEditingPlugin = grid.getPlugin('rowEditor');
//
// Re-attached the 'getField' and 'setField' extension methods to each column
//
rowEditingPlugin.initFieldAccessors(columns);
//
// Re-create the actual editor (the UI component within the 'RowEditing' plugin itself)
//
// 1. Destroy and make sure we aren't holding a reference to it.
//
Ext.destroy(rowEditingPlugin.editor);
rowEditingPlugin.editor = null;
//
// 2. This method has some lazy load logic built into it and will initialize a new row editor.
//
rowEditingPlugin.getEditor();
}
我使用配置侦听器将其附加到我的网格面板中:
listeners: {
'reconfigure': Ext.bind(this.onReconfigure, this)
}