Closed jnaylor92 closed 7 months ago
Qgrid implements lazy loading upon scrolling, which offers an efficiency comparable to that of pagination. For those scenarios where you need to view a fixed range of data, a workaround is to utilize the filtering capabilities on the id column or any other relevant criteria to narrow down the data as required. At this moment, there are no plans to implement pagination.
Is the number of elements loaded by the lazy loading configurable? Thanks for the ID narrowing suggestion, might look into it
Is the number of elements loaded by the lazy loading configurable? Thanks for the ID narrowing suggestion, might look into it
No, the page size is hardcoded to 100. Specifically, when we scroll to the page boundary, It loads data from i-100 to i+100 for position i.
How feasible is it to get pagination support?