jqGrid client-side searching
问题 I would like to manually apply searching to my jqGrid via JavaScript. I have tried a guide here, but can\'t seem to get it completely working. In the grid setup I have a column with name \'error_column\' that I would like to perform a search on looking for the string \'Test\'. Here is what I have so far: var filter = { \"field\": \"error_column\", \'oper\': \'eq\', \"data\": \'Test\' }; $(\"Grid2\").jqGrid(\'setGridParam\', { search: true, postData: { filters: filter} }) $(\"Grid2\").trigger(