Hi,
When the grid has finished loading I add a filter using –
$(“#jqxkeywordsgrid”).bind(‘initialized’, function () {
var filtergroup = new $.jqx.filter();
var filtervalue = ‘ACTIVE’;
var filter = filtergroup.createfilter(‘stringfilter’, filtervalue, ‘EQUAL’);
filtergroup.addfilter(0, filter);
$(‘#jqxkeywordsgrid’).jqxGrid(‘addfilter’, ‘status’, filtergroup, true);
});
There are 2 problems with only this filter –
1. Even though the grid is filtered properly when I click on the filter dropdown (as if I wish to change it) – all the values are checked and
not only the one I set as the filter.
2. When changing a different filter via GUI – only this one gets reset (while I was expecting to add a second filter to filter the grid a
second time)
Thanks.