Can rows be set as uneditable in jqgrid after the first edit is done?
I attempted to add a class called
not-editable-row
but it did not work.
This is how I currently make all rows editable:
onSelectRow: function(id){
if(id && id!==lastsel){
grid.jqGrid('restoreRow',lastsel);
grid.editRow(id,true);
lastsel=id;
}
}
Any assistance on this issue would be greatly appreciated.
Thank you.