How to use the bulk edit without checkbox selection? i to be able to bulk edit all records in the filter range, it can be several hundred sometimes
Thanks
1 Answers
Currently bulk edit works with selection. It need to pass selected row ids to backend to perform the operation.
You can have an option to have large records per page using, e.g. 500:
$opt["rowList"] = array(10,20,30,500,'All');
And use check-all checkbox then do bulk edit.
PS: 500 should not be in quotes.
Your Answer