I have a jqGrid with 100+ rows that are displayed in Edit mode by default. I am trying to figure out a way to send all row data in one call to the server.
The probl
I can imagine me many ways to implement you requirements. I would describe you the simplest one. It consist from
saveRow tests internally whether the row in editing and because the most rows (probably even all) are already in editing mode, you can just use getDataIDs to get array of ids of all rows and then call saveRow in the loop for every from returned id.getRowData without parameters or usage of getGridParam to get "data" option.I think that the above approach is not only mostly easy implemented. It's mostly save, because it works for every editing control (inclusive custom one).