MRT logoMaterial React Table

Detail Panel (Expanding) Feature Guide

Material React Table has multiple kinds of expanding features. This guide will show you how to use the detail panel feature to expand a single row to show more information for that row.

If you are looking for how to expand multiple rows from a tree data structure, see the Expanding Sub-Rows guide.

Relevant Props

1
{ [key: string]: MRT_ColumnDef<TData> }
MRT Display Columns Docs
2
'first' | 'last'
3
({ row, table }) => ReactNode

Relevant State

1
Record<string, boolean> | boolean
{}
TanStack Table Expanding Docs

Render Detail Panel

To add a detail panel to a row, all you need to do is add a renderDetailPanel prop.

The recommended way to access the row data for the detail panel is to pull from the original object on a row. This gives you the original data for the row, not transformed or filtered by TanStack Table.

Using row.getValue('columnId') will not work for data that does not have its own column. Using row.original.columnId is recommended for detail panels since the data in the detail panel usually does not have its own column.


1DylanSprouseMurray
2RaquelHakeemKohler
3ErvinKrisReinger
4BrittanyKathrynMcCullough
5BransonJohnFrami

Rows per page

1-5 of 5

Source Code

1import React, { FC, useMemo } from 'react';
2import MaterialReactTable from 'material-react-table';
3import { Box, Typography } from '@mui/material';
4import { data } from './makeData';
5
6const Example = () => {
7 const columns = useMemo(
8 () => [
9 {
10 accessorKey: 'id',
11 header: 'ID',
12 size: 50,
13 },
14 {
15 accessorKey: 'firstName',
16 header: 'First Name',
17 },
18 {
19 accessorKey: 'middleName',
20 header: 'Middle Name',
21 },
22 {
23 accessorKey: 'lastName',
24 header: 'Last Name',
25 },
26 ],
27 [],
28 );
29
30 return (
31 <MaterialReactTable
32 columns={columns}
33 data={data}
34 renderDetailPanel={({ row }) => (
35 <Box
36 sx={{
37 display: 'grid',
38 margin: 'auto',
39 gridTemplateColumns: '1fr 1fr',
40 width: '100%',
41 }}
42 >
43 <Typography>Address: {row.original.address}</Typography>
44 <Typography>City: {row.original.city}</Typography>
45 <Typography>State: {row.original.state}</Typography>
46 <Typography>Country: {row.original.country}</Typography>
47 </Box>
48 )}
49 />
50 );
51};
52
53export default Example;
54

Expand Detail Panel By Default

If you want some or all rows to be expanded by default, you can specify that in the initialState.expanded prop. Pass true to expand all rows, or specify which rowIds should be expanded.

//expand first 2 rows by default
<MaterialReactTable
data={data}
columns={columns}
initialState={{
expanded: {
1: true,
2: true,
},
}}
/>
//expand all rows by default
<MaterialReactTable
data={data}
columns={columns}
initialState={{
expanded: true,
}}
/>

Position Expand Column Last

If you want to position the expand column last, you can set the positionExpandColumn prop to 'last'.


1DylanSprouseMurray

Address: 261 Erdman Ford

City: East Daphne

State: Kentucky

Country: United States

2RaquelHakeemKohler

Address: 769 Dominic Grove

City: Vancouver

State: British Columbia

Country: Canada

3ErvinKrisReinger

Address: 566 Brakus Inlet

City: South Linda

State: West Virginia

Country: United States

Rows per page

1-3 of 3

Source Code

1import React, { FC, useMemo } from 'react';
2import MaterialReactTable, { MRT_ColumnDef } from 'material-react-table';
3import { Box, Typography } from '@mui/material';
4import { data, Person } from './makeData';
5
6const Example: FC = () => {
7 const columns = useMemo<MRT_ColumnDef<Person>[]>(
8 () => [
9 {
10 accessorKey: 'id',
11 header: 'ID',
12 size: 50,
13 },
14 {
15 accessorKey: 'firstName',
16 header: 'First Name',
17 },
18 {
19 accessorKey: 'middleName',
20 header: 'Middle Name',
21 },
22 {
23 accessorKey: 'lastName',
24 header: 'Last Name',
25 },
26 ],
27 [],
28 );
29
30 return (
31 <MaterialReactTable
32 columns={columns}
33 data={data}
34 displayColumnDefOptions={{
35 'mrt-row-expand': {
36 muiTableHeadCellProps: {
37 align: 'right',
38 },
39 muiTableBodyCellProps: {
40 align: 'right',
41 },
42 },
43 }}
44 initialState={{ expanded: true }}
45 renderDetailPanel={({ row }) => (
46 <Box
47 sx={{
48 display: 'grid',
49 margin: 'auto',
50 gridTemplateColumns: '1fr 1fr',
51 width: '100%',
52 }}
53 >
54 <Typography>Address: {row.original.address}</Typography>
55 <Typography>City: {row.original.city}</Typography>
56 <Typography>State: {row.original.state}</Typography>
57 <Typography>Country: {row.original.country}</Typography>
58 </Box>
59 )}
60 positionExpandColumn="last"
61 />
62 );
63};
64
65export default Example;
66

View Extra Storybook Examples