I'm new with the jqGrid and I want to know if there is any way I can set the whole grid in edit mode.
I just have one editable column. It is basically a checkbox list. My first approach was this code when the user enters in edit mode:
var ids = $("#tblPermisos").jqGrid('getDataIDs');
for (var i = 0; i < ids.length; i++)
$('#tblPermisos').editRow(ids[i], false);
This seem to work great, but when the users changes the page all rows in edit mode are canceled (or saved, don't know). I'd prefer to avoid handling the events to keep edit mode for all rows. So, back to my question, is there any "grid edit mode" or other simpler way than handling events?