I have a grid with serveral columns using the standard filter row.
If I select ‘null’ as a filtering criteria on the first column, the grid clears as expected.
I click a button which executes
$(‘#jqxgrid’).jqxGrid(‘clearfilters’,false);
$(‘#jqxgrid’).jqxGrid(‘refresh’);
The display resets as expected.
I then go to a second column and select a value from a dropdown list.
The display clears as though I had selected “null” in the first column.
The only way to get the correct filtering is to manually go back to the first column and
move the selection off “null” to some other condition – then the correct filtering is displayed.
How can I get the first column not to affect the display even after the clearfilters call?
Thanks