Yes, I have it working I had to change filterFeatures.js and listMenu.js to fix bugs and meet requirements. I now have filters that can be initialized from a database pretty cool
Printable View
Can you post your filterFeatures.js and listMenu.js files?
Thank's
I solve this issue by inherits from Ext.panel.Table instead Ext.grid.Panel which accept adding "features" config as simple array
Your way is different, but I am now happy with my solution. I had to completely re-do FiltersFeature.js and fix ListMenu.js. FiltersFeatures has a bad out of the box algorithm. I have 37 columns which each has a filter. So I call addFilter dynamically 37 times in afterRender of the Grid. Unfortunately, FilterFeatures destroys the existing filters and then recreates them on every call to addFilter. This is bad programming. You can imagine the memory and performance problems this created. I re-did the addFilter to stop this from happening. The reason I did the addFilter Dynamically is so I can initialize the filters from the database. Project requirement