Hello Tony,
there are a bug in cell editing of grid having subgrids as grid. If cell of subgrid will be clicked the click event will be fire twice: one for the subgrid and one more time for the main grid. The reason is easy – both grids have registerd click event (see the line 2276 of grid.base.js). The problem is that click event in the main grid will be wrong processed. Firsts it will be found
ptr = $(td,ts.rows).closest("tr.jqgrow");
in the subgrid and then will be calculated indexes
ri = ptr[0].rowIndex;
ci = $.jgrid.getCellIndex(td);
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top