I am not able to get all rows { paginated } after filtering JQgrid . I tried
> var myData = grid.jqGrid('getGridParam', 'data');
var myData = grid.jqGrid('getRowData');
but first option gives all rows and these are unfiltered rows. second one returns filtered rows but only from first page.
In fiddle example if you type test in Client columns there are 6 filtered results, but first option returns all 7 records , and second one returns only 5 records { ie only from first page}. I need to show 6 filtered records. results are logged in console.
Here is fiddle