I have a button, which is supposed to create and enable a filter. When I run it, everythign appears to run, the column turns blue, but no data is filtered, and when I look at the filter drop down, it does NOT have the values in it (unlike your example I am at a loss as to why.
Here is my code.
var myGrid = $("#productListDetail");
// Clear any existing filters
myGrid.jqxGrid('clearFilters');
// Create a NEW FILTER object
var filtergroup = new $.jqx.filter();
var filtercondition = 'contains';
var filtervalue = 'DATABASE';
// create and add the filter.
var filter1 = filtergroup.createfilter('stringfilter', filtervalue, filtercondition);
myGrid.jqxGrid('addfilter', 'PROD_TIER4_DESC_FPH', filtergroup);
// apply the filters.
myGrid.jqxGrid('applyfilters');
Any help appreciated.
As a followup question, does this syntax/functionality work if Filtermode = Excel? I am NOT using that, but would like to at some point…