I would like to get the data that is viewable on the grid, like for example after a search. I thought of getting it from the html document and looping through the records but this does not cover the case of multiple pages on the grid and the only other alternative I have is
$('#list').jqGrid('getGridParam', 'data');
but that returns the whole data and not just the filtered one.
The main purpose of this is to have the data that is currently visible on the jqgrid to be used in a highchart.
Any help would be great. Thanks!