-
Any suggested implementation for use cases that need to load thousands of items and need pagination ? |
Beta Was this translation helpful? Give feedback.
Answered by
pwlinkas
Apr 7, 2022
Replies: 1 comment
-
An approach could be updating the items whenever the user changes the timespan. timeline.on('rangechanged', function (event) {
FetchItemsFromSomeAPI(event.start, event.end); // Get only items within the current timespan
UpdateTimelineItems();
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mojoaxel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
An approach could be updating the items whenever the user changes the timespan.