Hi,
First of all, absolutely great plugin. Great job !
I am trying to use this plugin - works well for me in normal scenario, but I run into some issues with certain scenarios.
I am using Ext JS version 4.2.1 (already changed getGridColumns(true) to getGridColumns(). Now, here is the scenario:
1. It works well if I try to reconfigure the grid without any locked columns
2. To handle columns, I have defined following in my grid config:
Code:
normalGridConfig: {
plugins: [{
ptype: 'filterbar',
renderHidden: false,
showShowHideButton: true,
showClearAllButton: true
}]
},
lockedGridConfig: {
plugins: [{
ptype: 'filterbar',
renderHidden: false,
showShowHideButton: true,
showClearAllButton: true
}]
},
This works fine for the first time ie when the grid is not reconfigured yet.
Once I reconfigure the grid, I get the following error:
this.grid.headerCt.getColumns is undefined
I just tried to update all references of
PHP Code:
headerCt.getColumns
with
PHP Code:
var headerCt = this.grid.headerCt?this.grid.headerCt:this.grid.normalGrid.headerCt?this.grid.normalGrid.headerCt:this.grid.lockedGrid.headerCt; var columns = headerCt.getGridColumns();
Not sure if that's teh correct way, but at least I didn't get the headerCt error. But when I reconfigure the grid, I do not see the grid filters.
Will really appreciate your help on this one.
Thanks,
Ani