From 4ec37986a50e7487963c93ba6b0a64fda0ce3d19 Mon Sep 17 00:00:00 2001 From: Sunnie Kapar <107890031+sunniekapar@users.noreply.github.com> Date: Thu, 13 Mar 2025 11:17:16 -0400 Subject: [PATCH] fix: update column filtering pagination guide link --- docs/guide/column-filtering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/column-filtering.md b/docs/guide/column-filtering.md index f6eb4e68bc..f95c981f46 100644 --- a/docs/guide/column-filtering.md +++ b/docs/guide/column-filtering.md @@ -31,7 +31,7 @@ TanStack table supports both client-side and manual server-side filtering. This If you have a large dataset, you may not want to load all of that data into the client's browser in order to filter it. In this case, you will most likely want to implement server-side filtering, sorting, pagination, etc. -However, as also discussed in the [Pagination Guide](../pagination#should-you-use-client-side-pagination), a lot of developers underestimate how many rows can be loaded client-side without a performance hit. The TanStack table examples are often tested to handle up to 100,000 rows or more with decent performance for client-side filtering, sorting, pagination, and grouping. This doesn't necessarily mean that your app will be able to handle that many rows, but if your table is only going to have a few thousand rows at most, you might be able to take advantage of the client-side filtering, sorting, pagination, and grouping that TanStack table provides. +However, as also discussed in the [Pagination Guide](../pagination#pagination-guide), a lot of developers underestimate how many rows can be loaded client-side without a performance hit. The TanStack table examples are often tested to handle up to 100,000 rows or more with decent performance for client-side filtering, sorting, pagination, and grouping. This doesn't necessarily mean that your app will be able to handle that many rows, but if your table is only going to have a few thousand rows at most, you might be able to take advantage of the client-side filtering, sorting, pagination, and grouping that TanStack table provides. > TanStack Table can handle thousands of client-side rows with good performance. Don't rule out client-side filtering, pagination, sorting, etc. without some thought first.