I would like to filter my jqGrid based on certain cell values. For example, if I have a column named “relevance”, an integral score from 0 to 10, I’d like to only display rows where relevance > 5. Is this possible to do with jqGrid?
I don’t want the user to have to search for values where relevance > 5 – I want the table to load that way from the start.
You need to set
filtersoption ofpostDatato the filter which you need, setsearch: trueoption of jqGrid and trigger"reloadGrid". In the answer you will find the corresponding code example.