I am using Jqgrid version 4.4.0. My grid is little complex grid with inline editing. on select of row I make row editable based on condition. Below is the code for making row editable.
$("#list1").jqGrid('editRow', id, true, null,null,null,null, successfunc );
In the grid's navbutton I have "View record" button. On click of view button, View form shows all the field. View records gives option to edit editable fields. I want to restrict user view only here rather editing. When I searched jqgrid wiki it shows no Events are associated with this "View Records" button. I also tried to customize using beforeShowForm: function(formid){}
. But no luck. Please suggest how to achieve this ? Thanks in advance.