1 Answers
Hello,
In loadComplete event you can call setSelection(rowid);
$opt[“loadComplete”] = “function(){ jQuery(‘#list1’).jqGrid(‘setSelection’, 123, true);}”;
where list1 is grid-id and 123 is rowid to focus and select.
Limitation is this id should be on first page, or you can set listing order by to make it on first page.
Your Answer