Skip to content

Commit 8a14fa6

Browse files
committedJan 4, 2024
docs: fix feature guide links
1 parent b327934 commit 8a14fa6

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed
 

‎docs/guide/features.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ TanStack Table comes with many features, each with their own associated options
99
- [Column Sizing](./guide/column-sizing)
1010
- [Column Visibility](./guide/column-visibility)
1111
- [Expanding](./guide/expanding)
12-
- [Filters](./guide/filters)
12+
- [Column Filtering](./guide/column-filtering)
13+
- [Global Filtering](./guide/global-filtering)
1314
- [Grouping](./guide/grouping)
1415
- [Pagination](./guide/pagination)
1516
- [Row Pinning](./guide/row-pinning)
1617
- [Row Selection](./guide/row-selection)
1718
- [Sorting](./guide/sorting)
19+
- [Virtualization](./guide/virtualization)

‎docs/guide/tables.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ const data = ref<User[]>([])
7171
7272
#### Defining Columns
7373

74-
Column definitions are covered in detail in the next section in the [Column Def Guide](./column-defs). We'll note here, however, that when you define the type of your columns, you should use the same `TData` type that you used for you data.
74+
Column definitions are covered in detail in the next section in the [Column Def Guide](./guide/column-defs). We'll note here, however, that when you define the type of your columns, you should use the same `TData` type that you used for you data.
7575

7676
```ts
7777
const columns: ColumnDef<User>[] = [] //Pass User type as the generic TData type
7878
//or
7979
const columnHelper = createColumnHelper<User>() //Pass User type as the generic TData type
8080
```
8181

82-
The column definitions are where we will tell TanStack Table how each column should access and/or transform row data with either an `accessorKey` or `accessorFn`. See the [Column Def Guide](./column-defs#creating-accessor-columns) for more info.
82+
The column definitions are where we will tell TanStack Table how each column should access and/or transform row data with either an `accessorKey` or `accessorFn`. See the [Column Def Guide](./guide/column-defs#creating-accessor-columns) for more info.
8383

8484
#### Creating the Table Instance
8585

@@ -126,4 +126,4 @@ For example, you can find the core table instance API docs here: [Table API](../
126126

127127
### Table Row Models
128128

129-
There special set of table instance APIs for reading rows out of the table instance called row models. TanStack Table has advanced features where the rows that are generated may be very different than the the array of `data` that you originally passed in. To learn more about the different row models that you can pass in as a table option, see the [Row Models Guide](./row-models).
129+
There special set of table instance APIs for reading rows out of the table instance called row models. TanStack Table has advanced features where the rows that are generated may be very different than the the array of `data` that you originally passed in. To learn more about the different row models that you can pass in as a table option, see the [Row Models Guide](./guide/row-models).

0 commit comments

Comments
 (0)
Please sign in to comment.