You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Improve row selection docs
* Added note about row selection being index based by default
* Added a tanstack link for how row selection can managed with a custom id using the `getRowId` option on the core table api.
* Referenced the use case of manual pagination as it is one of the most likely scenarios that using a custom id is necessary for row selection
This should help developers understand how row selection is implemented.
* reword
---------
Co-authored-by: Kevin Van Cott <[email protected]>
Copy file name to clipboardexpand all lines: docs/api/features/row-selection.md
+2
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,8 @@ export type RowSelectionTableState = {
15
15
}
16
16
```
17
17
18
+
By default, the row selection state uses the index of each row as the row identifiers. Row selection state can instead be tracked with a custom unique row id by passing in a custom [getRowId](../../api/core/table.md#getrowid) function to the the table.
0 commit comments