Reputation: 21
I am trying to use jqGrid clientArray to submit multiple updates at once. (I am trying to update multiple rows in one go).
onSelectRow: function(id){
if (id && id !== lastsel) {
jQuery('#fnlusetaxlistings').saveRow(lastsel, true, 'clientArray');
jQuery('#fnlusetaxlistings').editRow(id, true, null, null);
lastsel = id;
}
},
This works fine, but I have no idea that how to retrieve clientArray and send it to the server? If anyone can post an example of sending clientArray to server, it will be very helpful.
Thanks, Ashish
Upvotes: 2
Views: 4944