Hi,
Great plugin. Thanks for sharing.
I want to apply a cls for the input field contained in the header. How to apply it ?
Thanks
Printable View
Hi,
Great plugin. Thanks for sharing.
I want to apply a cls for the input field contained in the header. How to apply it ?
Thanks
For supporting combo boxes I added
at the end ofPHP Code:if (filterField.xtype == 'combo')
filterField.on ('change', this.onFilterContainerEnter, this);
Hi,
is there a Verion for ExtJS 4.2.0
mfg
Klaus
It works in 4.2 after I changed this in two places:
var columns = this.grid.headerCt.getGridColumns(true);
to this:
var columns = this.grid.headerCt.getGridColumns();
I'll need to go figure out what the 'true' was for and test with nested headers and other things though...but a few basic filters on a basic grid works.
Applied now your fix - and it works like a dream! :))