I am new to jqGrid and I want to know if there is a way to set the whole grid in edit mode.
I have only one editable column. This is basically a list of checkboxes. My first approach was this code when the user enters edit mode:
var ids = $("#tblPermisos").jqGrid('getDataIDs'); for (var i = 0; i < ids.length; i++) $('#tblPermisos').editRow(ids[i], false);
This seems to work fine, but when users change the page, all lines in edit mode are canceled (or saved, they don’t know). I would prefer to avoid event handling in order to keep editing mode for all lines. So, back to my question, is there any “mesh editing mode” or another simpler way than handling events?
Diego source share