Clarification Related Fetching data from JQGrid

Viewed 17

The code is working fine, but when I am using the code bellow can I fetch complete data from Jqrid no matter of pagination?

Note: Right now I have 7 records and they are being fetched. Does this code fetch data from other pagination?

var data = $("#npdListGrid").jqGrid("getGridParam", "data");
1 Answers

Hai found solution in stackoverflow itself

var allRowsInGrid = $('#list4').jqGrid('getGridParam','data');
Related