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
like-gold•16mo 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:
like-gold•16mo ago

like-gold•16mo ago
table.getPrePaginatedRowModel()
stormy-goldOP•16mo ago
@KevinVandy Thanks