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
Say my collection has 10,000 rows and I have a page size of 50 - do I need to include the logic for selecting only the records for the current page in the collection parameter, or is this done automatically?
So would the code below:
ReactiveTable.publish("paginatedData", myData)
return 50 rows to the client, or all 10,000? In my settings I am specifying both currentPage and rowsPerPage.
I read through the docs, but wasn't quite sure how it behaved
The text was updated successfully, but these errors were encountered:
@aslagle but there is still the issue that everything is published to the client #467 and the first loading take a while, when having a big database. Anyway it could be changed to only publish the wanted rows ?
Say my collection has 10,000 rows and I have a page size of 50 - do I need to include the logic for selecting only the records for the current page in the
collection
parameter, or is this done automatically?So would the code below:
return 50 rows to the client, or all 10,000? In my settings I am specifying both
currentPage
androwsPerPage
.I read through the docs, but wasn't quite sure how it behaved
The text was updated successfully, but these errors were encountered: