Hello Abu,
I have a grid with more than 10k rows, so I use scroll=true. When i filter for some value and then click on “select all”, it only selects the visible records. Is there a way to select also the hidden records?
The only work around I found is to first scroll all the way down so all records are loaded and then select them. This is not something I can ask from my users.
regards,
Michiel
1 Answers
A workaround could be to increase page size: e.g. 500
$opt[“rowNum”] = 500;
…
$g->set_options($opt);
So now it will load new rows in a group of 500 when scrolled down. Most likely your filtered rows are less than this number. And if not you can further increase it.
Your Answer