Reputation: 1918
i see clientArray
in this code
if (id && id !== lastSel) {
grid.saveRow(lastSel, true, 'clientArray');
grid.jqGrid('restoreRow', lastSel);
grid.jqGrid('editRow', id, true, null, null, 'clientArray');
lastSel = id;
//}
}
what is a clientArray
and how to access data clientArray
?
thanks for help me.
Upvotes: 0
Views: 2184
Reputation: 1918
when write this code
grid.jqGrid('editRow', id, true, null, null, 'clientArray');
data not send to server and just sore data in grid
Upvotes: 1