How do I get all rows value including the paginated one
The above code show only the visible table rows not paginated one
4 Replies
quickest-silver•2y ago
There's a row model for everything: https://tanstack.com/table/latest/docs/guide/row-models#available-row-models-on-table-instance
Row Models Guide | TanStack Table Docs
Row Models Guide
If you take a look at the most basic example of TanStack Table, you'll see a code snippet like this:
quickest-silver•2y ago

quickest-silver•2y ago
table.getPrePaginatedRowModel()vicious-goldOP•2y ago
@KevinVandy Thanks