Pagination Feature Guide
Client-side pagination is enabled by default in Mantine React Table. There are a number of ways to customize pagination, turn off pagination, or completely replace the built in pagination with your own manual or server-side pagination logic.
Relevant Table Options
# | Prop Name | Type | Default Value | More Info Links | |
---|---|---|---|---|---|
1 | boolean |
| TanStack Table Pagination Docs | ||
2 | boolean | true | |||
3 | () => MRT_RowModel<TData> |
| |||
4 | PaginationProps & { rowsPerPageOptions?: string[], showRowsPerPage?: boolean; } |
| Mantine Pagination Docs | ||
5 | boolean |
| TanStack Table Pagination Docs | ||
6 | OnChangeFn<PaginationState> |
| TanStack Table Pagination Docs | ||
7 | number |
| TanStack Table Pagination Docs | ||
8 | boolean |
| TanStack Table Expanding Docs | ||
9 | 'default' | 'pages' | 'custom' | 'default' | MRT Editing Docs | ||
10 | 'bottom' | 'top' | 'both' |
| |||
11 | number |
| |||
Relevant State Options
# | State Option | Type | Default Value | More Info Links | |
---|---|---|---|---|---|
1 | { pageIndex: number, pageSize: number } | { pageIndex: 0, pageSize: 10 } | TanStack Table Pagination Docs | ||
Disable Pagination
If you simply want to disable pagination, you can set the enablePagination
table option to false
. This will both hide the pagination controls and disable the pagination functionality.
If you only want to disable the pagination logic, but still want to show and use the pagination controls, take a look down below at the Manual Pagination docs.
Customize Pagination
Customize Pagination Behavior
There are a few table options that you can use to customize the pagination behavior. The first one is autoResetPageIndex
. This table option is true
by default, and causes a table to automatically reset the table back to the first page whenever sorting, filtering, or grouping occurs. This makes sense for most use cases, but if you want to disable this behavior, you can set this table option to false
.
Next there is paginateExpandedRows
, which works in conjunction expanding features. This table option is true
by default, and forces the table to still only render the same number of rows per page that is set as the page size, even as sub-rows become expanded. However, this does cause expanded rows to sometimes not be on the same page as their parent row, so you can turn this off to keep sub rows with their parent row on the same page.
Customize Pagination Components
You can customize the pagination component with the mantinePaginationProps
table option to change things like the rowsPerPageOptions
or whether or not to show the first and last page buttons, and more.
Alternate Pagination UI
By default, Mantine React Table provides its own Table Pagination UI that is more compact and traditional for data tables. However, if you want to use the Mantine Pagination component instead, it is as easy as setting the paginationDisplayMode
table option to pages
.
First Name | Last Name | Email | City |
---|---|---|---|
Mason | Anderson | manderson57@yopmail.com | Seattle |
Nora | Bishop | nbishop26@mailinator.com | Portland |
Liam | Patterson | lpatterson61@yopmail.com | Austin |
Harper | Ross | hross38@mailinator.com | Chicago |
Oliver | Baker | obaker72@yopmail.com | Miami |
Charlotte | Phillips | cphillips33@mailinator.com | Los Angeles |
Henry | Cooper | hcooper18@yopmail.com | Denver |
Emma | Jenkins | ejenkins49@mailinator.com | Boston |
Alexander | Gonzalez | agonzalez67@yopmail.com | Dallas |
Ava | Ramirez | aramirez94@mailinator.com | Houston |
Manual or Server-Side Pagination
Manual Pagination
The default pagination features are client-side. This means you have to have all of your data fetched and stored in the table all at once. This may not be ideal for large datasets, but do not worry, Mantine React Table supports server-side pagination.
When the manualPagination
table option is set to true
, Mantine React Table will assume that the data
that is passed to the table already has had the pagination logic applied. Usually you would do this in your back-end logic.
Override Page Count and Row Count
If you are using manual pagination, the default page count and row count in the MRT Pagination component will be incorrect, as it is only derived from the number of rows provided in the client-side data
table option. Luckily, you can override these values and set your own page count or row count in the pageCount
and rowCount
table options.
Manage Pagination State
For either client-side or server-side pagination, you may want to have access to the pagination state yourself. You can do this like so with state
:
Alternatively, if all you care about is customizing the initial pagination state and do not need to react to its changes, like customizing the default page size or the page index, you can do that like so with initialState
:
Here is the full Remote Data example showing off server-side filtering, pagination, and sorting.
First Name | Last Name | Address | State | Phone Number | |
---|---|---|---|---|---|
No records to display |
View Extra Storybook Examples