I have a JqGrid that's populated by a server-side Spring-powered data. I don't use local property in my JqGrid. Whenever I search, it calls the server-side to call the specified url in the JqGrid configuration. That's good.
But what if I just want to filter out the existing data that the grid is showing? Assuming the grid is showing 50 records (let's ignore paging or hypothetically think that there are 10 more remaining pages). How do I search this 50 records for a particular entry without calling the server-side.
Now that I'm able to search. The grid should be able to filter out and show only those items I wanna see.
Thanks a lot.