I have a grid that can be paging, sorted, and edited. I have to save data after I get all the data in the grid.
For example, if you sorted and edited a grid, you must be able to import the edited and sorted data, that is, the data displayed on the screen.
I used this method.
$('#grid).jqGrid('getRowData')
It can get edited grid data, but it only takes one page of data.
so I used this method.
$('#grid).jqGrid('getGridParam', 'data)
It can get all grid data, but it's not apply sorting.
I tried this answer. answer It can get sorting data, but it's not apply inline edit.
I want to get all the grid data. Is there any way?