I’ve read this QA jqGrid filtering on the client-side using "filterToolbar" and this one triggering client-side filtering at load time in a jqGrid before I posted. Is there any way to just use one text box to filter the data on the client side?
The data is loaded via the grids built in mechanizm to consume json, and I have set loadonce:true, now the question is how to implement.
Here is an example from another grid plug-in http://datatables.net/release-datatables/examples/basic_init/zero_config.html
Regards,
Stephen
I’m answering my own question but the credit goes to Oleg (The Doctor, as he in called in my office) since it was his with guidance and deep knowledge of jqGrid that I was able to complete this.
The keys to this are two fold, you must set multipleSearch: true in the grid and then construct the proper filter based on your requirements. See the button code at the end for the filter creation. One thing to note is that I don’t perform a search until at least 2 chars have been entered into the text box.
Side note to this is that I am going to remove the button and handle the key down event of the text box to perform the search.