Hi. Currently whenever we highlight a row, click on the grid edit icon, make some changes, and click submit, the highlighting is removed from the selected row. Is there any way to keep it highlighted? Thanks.
2 Answers
One option is to disable server reloading. It will show change on grid (via client side working) and keep row selected.
$opt[“add_options”][“reloadAfterSubmit”] = false;
$opt[“edit_options”][“reloadAfterSubmit”] = false;
$g->set_options($opt);
Your Answer