3
後我使用GridHeaderFilter插件(http://www.sencha.com/forum/showthread.php?150918-Grid-Header-Filters)如何添加動態插件在Ext JS中網格柵加載
var testGrid = new Ext.grid.GridPanel({
frame: true,
minHeight: 200,
plugins: [new Ext.ux.grid.GridHeaderFilters()],
columns : [{
text : 'Test Id',
sortable : true,
dataIndex : 'testId',
filter: {
xtype: 'textfield',
type: 'string'
}
},
});
,但是當我動態地添加一些列到這個網格和使用 grid.reconfigure(NULL, newColumns []);
新列被反射,但GridHeaderPlugin被消失。
試過這個http://www.sencha.com/forum/showthread.php?124179-Dynamically-adding-plugins-to-grid並沒有幫助。