I have jqgrid-treegrid in a system to display all records in the same page with scrolls. But Im loading the records dynamically after loading set of records initially(kind of backgroud process).
One of the grid column is editable, so I keep update that particular cell in each row as the rest of the rows are being added to the grid.
The problem is as Im using
afterInsertRow: function(id)
{
jQuery('#myGrid').jqGrid('editRow',id,true);
}
to set the row editable, Im losing the focus(cursor) from the current row to the newly added row.
But I really need to keep the cursor to the current row without interrupting my updating process.
Help me on this pls…
Finally I found a way…
I commented this line in jquery.jqGrid.src.js (line no 9035)