pagination giving error(without any text) while select “All” on pagination dropdown for large data(>39000 rows) while it’s working for less than 39000(< 39000)
1 Answers
Hello,
However, showing 39000 in plain html table will also slow down rendering in browser. It’s recommended to use auto load on scroll option. You can limit page size to something like 100 and enable lazy loading.
https://www.gridphp.com/docs/grid-options/#lazy-loading-of-pages
It could be due to server memory limit exceeded. You need to check php error log for that OR try increasing it and recheck.
Your Answer