I want to add filter picker (that has options for filter data of column) in the column header of a grid. I'm using Ext JS 3.2.2
I am getting this:
I want my header like this:
How to add filter plugin in my grid?
Also I am trying this in code but not getting filter in drop down.
this.filters = new Ext.ux.grid.filter.StringFilter({
filters:this.filter
}) ;
grid.plugins = [this.filters],
grid.features = [{
ftype : this.filters
}
];
Thanks for your help