From f243907c9bf7cbe345302a74207e79c7c7bfb2d8 Mon Sep 17 00:00:00 2001 From: speyar <127413175+speyar@users.noreply.github.com> Date: Mon, 16 Jun 2025 18:23:30 +0100 Subject: [PATCH] docs: add forgotten "mean" to column filtering docs The sentence before was "This doesn't necessarily that your app" where the word "mean" didn't exist, this commit aims to add that. --- docs/guide/column-filtering.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/column-filtering.md b/docs/guide/column-filtering.md index bca981e6db..e69af07ccb 100644 --- a/docs/guide/column-filtering.md +++ b/docs/guide/column-filtering.md @@ -29,7 +29,7 @@ TanStack table supports both both client-side and manual server-side filtering. 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.md#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 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.md#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. > 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. @@ -332,4 +332,4 @@ There are a lot of Column and Table APIs that you can use to interact with the c - `column.getFilterIndex` - Useful for displaying in what order the current filter is being applied - `column.getAutoFilterFn` - -- `column.getFilterFn` - Useful for displaying which filter mode or function is currently being used \ No newline at end of file +- `column.getFilterFn` - Useful for displaying which filter mode or function is currently being used