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
|`paginationPerPage`|`number`|`10`| Rows shown per page. |
87
+
|`paginationPosition`|`'top' \| 'bottom' \| 'both'`|`'bottom'`| Where the pagination bar renders. `'both'` shows it above and below the table simultaneously. |
87
88
|`paginationRowsPerPageOptions`|`number[]`|`[10,15,20,25,30]`| Options in the rows-per-page dropdown. |
88
89
|`paginationDefaultPage`|`number`|`1`| Initial active page. |
89
90
|`paginationPage`|`number`| - | Controlled active page. When provided, the table navigates to this page whenever the value changes. Use together with `onChangePage` to keep them in sync. |
@@ -149,6 +150,7 @@ Column-level footers live on each [`TableColumn<T>`](#tablecolumnt) as the `foot
149
150
|`onRowMiddleClicked`|`(row, event) => void`| Called when a row is middle-clicked (scroll-click). Use with `onRowClicked` to implement open-in-new-tab behaviour. |
150
151
|`onRowMouseEnter`|`(row, event) => void`| Called when the pointer enters a row. |
151
152
|`onRowMouseLeave`|`(row, event) => void`| Called when the pointer leaves a row. |
153
+
|`onScroll`|`(event) => void`| Called when the user scrolls the table body. Works with both `fixedHeader` enabled and disabled. |
0 commit comments