For added clarification, I’m call the method #('#jqxgrid').jqxGrid('setcellvalue') in the loadcomplete: function (data) {} event of the data adapter, since that is where I can verify the data being returned by the server.
Trying the code you mention only removes filters that are applied to the jqxGrid. What I want to accomplish is to make the dropdown checkbox list of filter items be empty. Such that when the user clicks on the filter row dropdown, it only displays “Select All” with no other choices. Currently whenever I try to clear out the filter row items for a given column it defaults to populating the dropdown list.
I figured out a work around by using the on(‘close’) event to capture the specific case mentioned in my previous post, in addition to the ‘select’ and ‘keyup’ events.