You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have around 27k records in remote hosted DB. I have integrated this package to display all data and it works fine but when changing page with default per page to 100, it takes too much time and increases when page changes. Below is my setup for tabular:
While inspecting, i found that template helpers are called too many time.
when there are 100 data displayed, and click on next page, first helpers are called 100 times, then new data arrives and again helpers are called 100 times.
Any solution?
The text was updated successfully, but these errors were encountered:
With 100 helpers I'd say you might be "tying on" too much reactivity. Perhaps an overall optimization by pairing down how many columns/how much data you're showing.
I have around 27k records in remote hosted DB. I have integrated this package to display all data and it works fine but when changing page with default per page to 100, it takes too much time and increases when page changes. Below is my setup for tabular:
While inspecting, i found that template helpers are called too many time.
when there are 100 data displayed, and click on next page, first helpers are called 100 times, then new data arrives and again helpers are called 100 times.
Any solution?
The text was updated successfully, but these errors were encountered: