When setting cellEdit option for master grid to true, detail grid would not change when clicking on master rows. And also is there any way to edit the cells by double clicking on each. I would appreciate your help.
Emailed you a demo.
Adding following options will make celledit work on double click and functional on master detail grid.
// celledit double click (master-detail) – list1 is grid id
$opt["cellEdit"] = true;
$opt["beforeSelectRow"] = "function(rowid) { if (jQuery('#list1').jqGrid('getGridParam','selrow') != rowid) { jQuery('#list1').jqGrid('resetSelection'); jQuery('#list1').setSelection(rowid); } return false; }";
$opt["ondblClickRow"] = "function (rowid, iRow,iCol) { jQuery('#list1').editCell(iRow, iCol, true); }";
$grid->set_options($opt);