MRT logoMaterial React Table

Pagination Feature Guide

Client-side pagination is enabled by default in Material 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 Props

#
Prop Name
Type
Default Value
More Info Links
1
boolean
true

No Description Provided... Yet...

2

No Description Provided... Yet...

3

No Description Provided... Yet...

4

No Description Provided... Yet...

5

No Description Provided... Yet...

6
number

No Description Provided... Yet...

7

No Description Provided... Yet...

8

No Description Provided... Yet...

9
number

No Description Provided... Yet...

Relevant State Options

#
State Option
Type
Default Value
More Info Links
1
{ pageIndex: number, pageSize: number }
{ pageIndex: 0, pageSize: 10 }
TanStack Table Pagination Docs

No Description Provided... Yet...

Disable Pagination

If you simply want to disable pagination, you can set the enablePagination prop 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.

<MaterialTable columns={columns} data={data} enablePagination={false} />

Customize Pagination

Customize Pagination Behavior

There are a few props that you can use to customize the pagination behavior. The first one is autoResetPagination. This prop 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 prop to false.

Next there is paginateExpandedRows, which works in conjunction expanding features. This prop 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 muiTablePaginationProps prop to change things like the rowsPerPageOptions or whether or not to show the first and last page buttons, and more.

<MaterialReactTable
columns={columns}
data={data}
muiTablePaginationProps={{
rowsPerPageOptions: [5, 10],
showFirstLastPageButtons: false,
}}
/>

View all table pagination options that you can tweak in the Material UI Table Pagination API Docs.

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 don't worry, Material React Table supports server-side pagination.

When the manualPagination prop is set to true, Material 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 Material UI pagination component will be incorrect, as it is only derived from the number of rows provided in the client-side data prop. Luckily, you can override these values and set your own page count or row count in the pageCount and rowCount props.

<MaterialTable
columns={columns}
data={data}
manualPagination
rowCount={data.meta.totalDBRowCount} //you can tell the pagination how many rows there are in your back-end data
/>

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:

//store pagination state in your own state
const [pagination, setPagination] = useState({
pageIndex: 0,
pageSize: 5, //customize the default page size
});
useEffect(() => {
//do something when the pagination state changes
}, [pagination.pageIndex, pagination.pageSize]);
return (
<MaterialTable
columns={columns}
data={data}
onPaginationChange={setPagination} //hoist pagination state to your state when it changes internally
state={{ pagination }} //pass the pagination state to the table
/>
);

Alternatively, if all you care about is customizing the initial pagination state and don't need to react to its changes, like customizing the default page size or the page index, you can do that like so with initialState:

<MaterialTable
columns={columns}
data={data}
initialState={{ pagination: { pageSize: 25, pageIndex: 2 } }}
/>

Here is the full Remote Data example showing off server-side filtering, pagination, and sorting.


First Name
Last Name
Address
State
Phone Number

Rows per page

0-0 of 0

Source Code

1import React, { useEffect, useMemo, useState } from 'react';
2import MaterialReactTable from 'material-react-table';
3
4const Example = () => {
5 const [data, setData] = useState([]);
6 const [isError, setIsError] = useState(false);
7 const [isLoading, setIsLoading] = useState(false);
8 const [isRefetching, setIsRefetching] = useState(false);
9 const [columnFilters, setColumnFilters] = useState([]);
10 const [globalFilter, setGlobalFilter] = useState('');
11 const [sorting, setSorting] = useState([]);
12 const [pagination, setPagination] = useState({
13 pageIndex: 0,
14 pageSize: 10,
15 });
16 const [rowCount, setRowCount] = useState(0);
17
18 //if you want to avoid useEffect, look at the React Query example instead
19 useEffect(() => {
20 const fetchData = async () => {
21 if (!data.length) {
22 setIsLoading(true);
23 } else {
24 setIsRefetching(true);
25 }
26
27 const url = new URL('/api/data', 'https://www.material-react-table.com');
28 url.searchParams.set(
29 'start',
30 `${pagination.pageIndex * pagination.pageSize}`,
31 );
32 url.searchParams.set('size', `${pagination.pageSize}`);
33 url.searchParams.set('filters', JSON.stringify(columnFilters ?? []));
34 url.searchParams.set('globalFilter', globalFilter ?? '');
35 url.searchParams.set('sorting', JSON.stringify(sorting ?? []));
36
37 try {
38 const response = await fetch(url.href);
39 const json = await response.json();
40 setData(json.data);
41 setRowCount(json.meta.totalRowCount);
42 } catch (error) {
43 setIsError(true);
44 console.error(error);
45 return;
46 }
47 setIsError(false);
48 setIsLoading(false);
49 setIsRefetching(false);
50 };
51 fetchData();
52 // eslint-disable-next-line react-hooks/exhaustive-deps
53 }, [
54 columnFilters,
55 globalFilter,
56 pagination.pageIndex,
57 pagination.pageSize,
58 sorting,
59 ]);
60
61 const columns = useMemo(
62 () => [
63 {
64 accessorKey: 'firstName',
65 header: 'First Name',
66 },
67 //column definitions...
85 ],
86 [],
87 );
88
89 return (
90 <MaterialReactTable
91 columns={columns}
92 data={data}
93 enableRowSelection
94 getRowId={(row) => row.phoneNumber}
95 initialState={{ showColumnFilters: true }}
96 manualFiltering
97 manualPagination
98 manualSorting
99 muiToolbarAlertBannerProps={
100 isError
101 ? {
102 color: 'error',
103 children: 'Error loading data',
104 }
105 : undefined
106 }
107 onColumnFiltersChange={setColumnFilters}
108 onGlobalFilterChange={setGlobalFilter}
109 onPaginationChange={setPagination}
110 onSortingChange={setSorting}
111 rowCount={rowCount}
112 state={{
113 columnFilters,
114 globalFilter,
115 isLoading,
116 pagination,
117 showAlertBanner: isError,
118 showProgressBars: isRefetching,
119 sorting,
120 }}
121 />
122 );
123};
124
125export default Example;
126

View Extra Storybook Examples