Hello!
I have a server-side filtered grid that is using filter row and the API – addfilter and removefilter to manage filters. Consider the following scenario:
1. I add a filter using:
var problemFilterGroup = new $.jqx.filter();
var problemFilter = problemFilterGroup.createfilter(“booleanfilter”, true, “equal”);
problemFilterGroup.addfilter(1, problemFilter);
this.gridElement.jqxGrid(“addfilter”, “problem”, problemFilterGroup);
this.gridElement.jqxGrid(“applyfilters”);
2. I apply a filter using the filter row.
3. I remove the firstly applied filter:
this.gridElement.jqxGrid(“removefilter”, “problem”);
this.gridElement.jqxGrid(“applyfilters”);
4. I add another filter via the filter row and the filter removed in step 3 comes back.
jqWidgets v3.0.2
Google Chrome
jQuery v1.9.1