Hi,
I’m having an issue trying to clear out the filteritems in a filterrow checkedlist dropdown. I’m dynamically changing the filteritems to match the grid’s data whenever the grid is changed/updated/filtered. There’s one case where nothing is displayed in the grid, so I want to clear out all selections from the filterrow dropdown accordingly. I’ve tried the following to no avail:
$('#jqxgrid').jqxGrid('setcolumnproperty', 'SomeColumnDataField', 'filteritems',[]);
$('#jqxgrid').jqxGrid('setcolumnproperty', 'SomeColumnDataField', 'filteritems',new Array());
$('#jqxgrid').jqxGrid('setcolumnproperty', 'TSomeColumnDataFieldat', 'filteritems',null);
but none of these options seem to change the checkedlist dropdown in for the column’s filterrow. How can I go about emptying the filterItems for a column?