-
Hi, I currently have a project where I am using 1.4.2, and it is great. However, as I have a ton of records in a remote data source, it would be great if I could use pagination. Is there a way to do so without changing w2ui version? If not, what can I do to improve loading times? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Pagination has been deprecated in w2ui 1.3 in favor of infinite scrolling, see https://w2ui.com/web/blog/8/W2UI-1.3-Released-Goodbye-Pagination-Hello-Infinite-Scroll So if you really want pagination, you'll have to downgrade to w2ui 1.2 (not recommended) If you want to upgrade, I've compiled some migration help in this discussion: #2015
First, identify your bottle-neck. Maybe it's actually your network / backend / DB and not w2ui. You can also play around with grid.limit to decrease the number of records loaded at once. |
Beta Was this translation helpful? Give feedback.
Pagination has been deprecated in w2ui 1.3 in favor of infinite scrolling, see https://w2ui.com/web/blog/8/W2UI-1.3-Released-Goodbye-Pagination-Hello-Infinite-Scroll
So if you really want pagination, you'll have to downgrade to w2ui 1.2 (not recommended)
If you want to upgrade, I've compiled some migration help in this discussion: #2015
First, identify your bottle-neck. Maybe it's actually your network / backend / DB and not w2ui.
You can also play around with grid.limit to decrease the number of records loaded at once.