MRT logoMaterial React Table

On This Page

    Expanding Sub-Rows (Tree Data) Feature Guide

    Material React Table has support for expanding sub-rows or tree data. This feature is useful for displaying hierarchical data. The sub-rows can be expanded and collapsed by clicking on the expand/collapse icon.

    NOTE: This feature is for expanding rows of the same data type. If you want to add expansion of more data for the same row, check out the Detail Panel Feature Guide.

    Relevant Table Options

    1
    boolean
    TanStack Table Expanding Docs
    2
    Array<TData>
    Usage Docs
    3
    boolean
    true
    MRT Expanding Sub Rows Docs
    4
    boolean
    MRT Expanding Sub Rows Docs
    5
    (dataRow: TData) => TData[]
    6
    boolean
    false
    TanStack Filtering Docs
    7
    () => MRT_RowModel<TData>
    8
    (row: Row<TData>) => boolean
    TanStack Table Expanding Docs
    9
    (row: Row<TData>) => boolean
    TanStack Table Expanding Docs
    10
    (originalRow: TData, index: number) => undefined | TData[]
    TanStack Table Core Table Docs
    11
    boolean
    TanStack Table Expanding Docs
    12
    number
    100
    TanStack Table Filtering Docs
    13
    IconButtonProps | ({ table }) => IconButtonProps
    Material UI IconButton Props
    14
    IconButtonProps | ({ row, table }) => IconButtonProps
    Material UI IconButton Props
    15
    OnChangeFn<ExpandedState>
    TanStack Table Expanding Docs
    16
    boolean
    TanStack Table Expanding Docs
    17
    'first' | 'last'

    Relevant State Options

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

    Enable Expanding Sub-Rows

    To enable expanding sub-rows, you must first set the enableExpanding table option to true.

    However, your data must also be formatted in a way to allow for expanding rows that are in some way related to each other. By default, Material React Table will look for a special subRows property on each row of your data and treat any array of rows that it finds as the sub-rows for that row. You can customize or override this behavior by passing a custom getSubRows table option.

    const data = [
    {
    id: 1,
    name: 'John Doe',
    subRows: [
    {
    id: 2,
    name: 'Jane Doe',
    },
    ],
    },
    ];
    const table = useMaterialReactTable({
    columns,
    data,
    enableExpanding: true,
    getSubRows: (originalRow) => originalRow.subRows, //default, can customize
    });
    return <MaterialReactTable table={table} />;

    Demo

    Open StackblitzOpen Code SandboxOpen on GitHub
    DylanMurray261 Erdman FordEast DaphneKentucky
    RaquelKohler769 Dominic GroveColumbusOhio
    1-2 of 2

    Source Code

    1import { useMemo } from 'react';
    2import {
    3 MaterialReactTable,
    4 useMaterialReactTable,
    5 type MRT_ColumnDef,
    6} from 'material-react-table';
    7
    8export type Person = {
    9 firstName: string;
    10 lastName: string;
    11 address: string;
    12 city: string;
    13 state: string;
    14 subRows?: Person[]; //Each person can have sub rows of more people
    15};
    16
    17export const data = [
    18 {
    19 firstName: 'Dylan',
    20 lastName: 'Murray',
    21 address: '261 Erdman Ford',
    22 city: 'East Daphne',
    23 state: 'Kentucky',
    24 subRows: [
    25 {
    26 firstName: 'Ervin',
    27 lastName: 'Reinger',
    28 address: '566 Brakus Inlet',
    29 city: 'South Linda',
    30 state: 'West Virginia',
    31 subRows: [
    32 {
    33 firstName: 'Jordane',
    34 lastName: 'Homenick',
    35 address: '1234 Brakus Inlet',
    36 city: 'South Linda',
    37 state: 'West Virginia',
    38 },
    39 ],
    40 },
    41 {
    42 firstName: 'Brittany',
    43 lastName: 'McCullough',
    44 address: '722 Emie Stream',
    45 city: 'Lincoln',
    46 state: 'Nebraska',
    47 },
    48 ],
    49 },
    50 {
    51 firstName: 'Raquel',
    52 lastName: 'Kohler',
    53 address: '769 Dominic Grove',
    54 city: 'Columbus',
    55 state: 'Ohio',
    56 subRows: [
    57 {
    58 firstName: 'Branson',
    59 lastName: 'Frami',
    60 address: '32188 Larkin Turnpike',
    61 city: 'Charleston',
    62 state: 'South Carolina',
    63 },
    64 ],
    65 },
    66];
    67
    68const Example = () => {
    69 const columns = useMemo<MRT_ColumnDef<Person>[]>(
    70 //column definitions...
    98 );
    99
    100 const table = useMaterialReactTable({
    101 columns,
    102 data,
    103 enableExpandAll: false, //hide expand all double arrow in column header
    104 enableExpanding: true,
    105 });
    106
    107 return <MaterialReactTable table={table} />;
    108};
    109
    110export default Example;
    111

    Expand All Rows Button

    By default, Material React Table will show the expand all button in the expand column header. You can disable this by setting the enableExpandAll table option to false.

    const table = useMaterialReactTable({
    columns,
    data,
    enableExpanding: true,
    enableExpandAll: false, //hide expand all button in header
    });

    Expanded Rows Pagination Behavior

    By default, Material React Table will treat expanded sub-rows the same as any other row when it comes to pagination. This means that some expanded rows may be on the next page. You can change this behavior by setting the paginateExpandedRows table option to false.

    const table = useMaterialReactTable({
    columns,
    data,
    enableExpanding: true,
    paginateExpandedRows: false, //expanded rows will be on the same page as their parent row
    });

    Expanded Leaf Row Filtering Behavior

    If you are using the filtering features alongside sub-row features, then there are a few behaviors and customizations you should be aware of.

    Filter From Leaf Rows

    By default, filtering is done from parent rows down (so if a parent row is filtered out, all of its children will be filtered out as well). Setting the filterFromLeafRows table option to true will cause filtering to be done from leaf rows up (which means parent rows will be kept so long as one of their child, or grand-child, etc. rows pass the filtering).

    const table = useMaterialReactTable({
    columns,
    data,
    enableExpanding: true,
    filterFromLeafRows: true, //search for child rows and preserve parent rows
    });

    Max Leaf Row Filter Depth

    By default, filtering is done for all rows (max depth of 100), no matter if they are root level parent rows or the child leaf rows of a parent row. Setting the maxLeafRowFilterDepth table option to 0 will cause filtering to only be applied to the root level parent rows, with all sub-rows remaining unfiltered. Similarly, setting this option to 1 will cause filtering to only be applied to child leaf rows 1 level deep, and so on.

    This is useful for situations where you want a row's entire child hierarchy to be visible, regardless of the applied filter.

    const table = useMaterialReactTable({
    columns,
    data,
    enableExpanding: true,
    maxLeafRowFilterDepth: 0, //When filtering root rows, keep all child rows of the passing parent rows
    });

    Expand All Rows By Default

    You can manage the initial state of the expanded rows with the expanded state option in either the initialState or state props.

    For example, you may want all rows to be expanded by default. To do this, you can simply set the expanded state option to true.

    const table = useMaterialReactTable({
    columns,
    data,
    enableExpanding: true,
    initialState: { expanded: true }, //all rows expanded by default
    });

    Demo

    DylanMurray261 Erdman FordEast DaphneKentucky
    ErvinReinger566 Brakus InletSouth LindaWest Virginia
    JordaneHomenick1234 Brakus InletSouth LindaWest Virginia
    JordanClarkson4882 Palm RdSan FranciscoCalifornia
    BrittanyMcCullough722 Emie StreamLincolnNebraska
    RaquelKohler769 Dominic GroveColumbusOhio
    BransonFrami32188 Larkin TurnpikeCharlestonSouth Carolina
    1-2 of 2

    Source Code

    1import { useMemo } from 'react';
    2import {
    3 MaterialReactTable,
    4 useMaterialReactTable,
    5 type MRT_ColumnDef,
    6} from 'material-react-table';
    7
    8export type Person = {
    9 firstName: string;
    10 lastName: string;
    11 address: string;
    12 city: string;
    13 state: string;
    14 subRows?: Person[]; //Each person can have sub rows of more people
    15};
    16
    17export const data: Person[] = [
    18 {
    19 firstName: 'Dylan',
    20 lastName: 'Murray',
    21 address: '261 Erdman Ford',
    22 city: 'East Daphne',
    23 state: 'Kentucky',
    24 subRows: [
    25 {
    26 firstName: 'Ervin',
    27 lastName: 'Reinger',
    28 address: '566 Brakus Inlet',
    29 city: 'South Linda',
    30 state: 'West Virginia',
    31 subRows: [
    32 {
    33 firstName: 'Jordane',
    34 lastName: 'Homenick',
    35 address: '1234 Brakus Inlet',
    36 city: 'South Linda',
    37 state: 'West Virginia',
    38 },
    39 {
    40 firstName: 'Jordan',
    41 lastName: 'Clarkson',
    42 address: '4882 Palm Rd',
    43 city: 'San Francisco',
    44 state: 'California',
    45 },
    46 ],
    47 },
    48 {
    49 firstName: 'Brittany',
    50 lastName: 'McCullough',
    51 address: '722 Emie Stream',
    52 city: 'Lincoln',
    53 state: 'Nebraska',
    54 },
    55 ],
    56 },
    57 {
    58 firstName: 'Raquel',
    59 lastName: 'Kohler',
    60 address: '769 Dominic Grove',
    61 city: 'Columbus',
    62 state: 'Ohio',
    63 subRows: [
    64 {
    65 firstName: 'Branson',
    66 lastName: 'Frami',
    67 address: '32188 Larkin Turnpike',
    68 city: 'Charleston',
    69 state: 'South Carolina',
    70 },
    71 ],
    72 },
    73];
    74
    75const Example = () => {
    76 const columns = useMemo<MRT_ColumnDef<Person>[]>(
    77 //column definitions...
    105 );
    106
    107 const table = useMaterialReactTable({
    108 columns,
    109 data,
    110 enableExpandAll: false, //hide expand all double arrow in column header
    111 enableExpanding: true,
    112 filterFromLeafRows: true, //apply filtering to all rows instead of just parent rows
    113 initialState: { expanded: true }, //expand all rows by default
    114 paginateExpandedRows: false, //When rows are expanded, do not count sub-rows as number of rows on the page towards pagination
    115 });
    116
    117 return <MaterialReactTable table={table} />;
    118};
    119
    120export default Example;
    121

    Expand Root Rows Only By Default

    Here is a slightly more complex initial expanded state example where all the root rows are expanded by default, but none of the sub rows themselves are expanded by default. We just need to find all of the root row ids and set their key in the expanded initialState option to true.

    Demo

    DylanMurray261 Erdman FordEast DaphneKentucky
    ErvinReinger566 Brakus InletSouth LindaWest Virginia
    BrittanyMcCullough722 Emie StreamLincolnNebraska
    RaquelKohler769 Dominic GroveColumbusOhio
    BransonFrami32188 Larkin TurnpikeCharlestonSouth Carolina
    1-5 of 5

    Source Code

    1import { useMemo } from 'react';
    2import {
    3 MaterialReactTable,
    4 type MRT_ExpandedState,
    5 type MRT_ColumnDef,
    6 useMaterialReactTable,
    7} from 'material-react-table';
    8import { Button } from '@mui/material';
    9
    10export type Person = {
    11 id: string;
    12 firstName: string;
    13 lastName: string;
    14 address: string;
    15 city: string;
    16 state: string;
    17 subRows?: Person[]; //Each person can have sub rows of more people
    18};
    19
    20//data definitions...
    96
    97const Example = () => {
    98 const columns = useMemo<MRT_ColumnDef<Person>[]>(
    99 //column definitions...
    127 );
    128
    129 const initialExpandedRootRows = useMemo<MRT_ExpandedState>(
    130 () =>
    131 data
    132 .map((originalRow) => originalRow.id) //get all the root row ids, use recursion for additional levels
    133 .reduce((a, v) => ({ ...a, [v]: true }), {}), //convert to an object with all the ids as keys and `true` as values
    134 [],
    135 );
    136
    137 const table = useMaterialReactTable({
    138 columns,
    139 data,
    140 enableExpanding: true,
    141 getRowId: (originalRow) => originalRow.id,
    142 initialState: { expanded: initialExpandedRootRows }, //only expand the root rows by default
    143 renderTopToolbarCustomActions: ({ table }) => (
    144 <Button onClick={() => table.resetExpanded()}>Reset Expanded</Button>
    145 ),
    146 });
    147
    148 return <MaterialReactTable table={table} />;
    149};
    150
    151export default Example;
    152