I am using jqgrid and have simple searching enabled. I am wondering if there is a way to add an additional item in the select list of fields that does not exist as a column in the grid. I would call it something like ‘Any Field’ so I could search on any of the fields and then handle that outcome server side.
Share
The suggestion of Bethrezen with the usage of one hidden column is one way which you can use. You should only don’t forget to use
searchhidden: truesearchoptions.Another way which I can suggest you can see on the demo:
In the demo I add the
In the demo I extended the
p.columnsparameter ofjqFiltermethod with and additional “pseudo column” ‘Any Field’. It’s just the idea which you can I hope adopt to your exact requirements.