Abu,
After a bulk-edit the rows will still be selected, but you are not allowed to do follow-up edits (bulk or normal ones). as it says please select a record. This looks a bit odd as the records are still selected. Is there a way to have theses row deselected automatically after a bulk-edit liek is the case with a normal edit?
2 Answers
I checked online demo and it allow followed edits on same records, so unable to generate this issue:
https://phpgrid.org/demo/demos/editing/bulk-edit.php
However, if you want to remove selection, you can set:
$grid[“edit_options”][“beforeSubmit”] = “function(){ $(‘#list1’).resetSelection(); return [true,”]; }”;
$g->set_options($grid);
(where list1 is id passed in render(‘list1’) )
Your Answer