onSelectRow: function(id){
if(id && id!==lastsel){
jQuery('#rowed3').jqGrid('restoreRow',lastsel);
jQuery('#rowed3').jqGrid('editRow',id,true);
lastsel=id;
}
}
is not working if you want to edit the same row twice. Changing “id!==lastsel” to „jQuery(id).attr(“editable”) !== “1”” works fine.
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top