MRT logoMaterial React Table

Row Virtualization Example

Material React Table has a built-in row virtualization feature (via @tanstack/react-virual) that allows you to render a large number of rows without major performance issues that you would normally see with a large number of DOM elements.

Try out the performance of the table below with 10,000 rows! Filtering, Search, and Sorting also maintain usable performance.

Be sure to also check out the full virtualization feature guide docs to learn about both Row and Column Virtualization.

NOTE: You should only enable row virtualization if you have a large number of rows or columns. Depending on the size of the table, if you are rendering fewer than a couple dozen rows at a time, you will actually just be adding extra overhead to the table renders. Virtualization only becomes necessary when you have over 50 rows or so at the same time with no pagination or dozens of columns.

More Examples
1ElwinHillaryBatz-WaelchiCleveland26@hotmail.com4113 Manor Gardens36713-8112East AlvenaIowaBotswana
2RheaShaynaBartonMissouri.Schmeler24@hotmail.com85394 Zoila Brooks74632Fort VedaTennesseeGuinea-Bissau
3DamionDashawnLindSally.Daniel-Schumm@yahoo.com8413 State Street70911LibbyfieldHawaiiSeychelles
4EmmittElvisSipesAngela14@hotmail.com533 Center Street19220-2494New DaniellaOregonSan Marino
5CorrineShirleyWalker-SanfordCarlos_Kiehn13@yahoo.com96186 Ruben Passage83797JulianaburghOklahomaItaly
6MichaelaMatildeMacejkovicMallie_Heidenreich@yahoo.com460 Stephen Port45896ShannonboroughNevadaSint Maarten
7KarenRhettBauchWerner.Jones@hotmail.com730 Laverne Route57778-8109JarrodchesterKentuckySudan
8EverettOrenKuphalSanford88@yahoo.com647 N Walnut Street53100AllenefurtSouth DakotaLesotho
9RobertaShaunSchmittCurtis.Orn@yahoo.com83985 Orland Manors86825East EuniceshireConnecticutCzechia
10AbdielSammieMaggioGriffin.Flatley@gmail.com3082 Luther Lake12789Fort GlennaIndianaAntigua and Barbuda
11AlysonTateLittleClyde_Sipes93@gmail.com635 David Hollow95493-3120North MetabergWisconsinBrazil
12HillaryBrannonHahnTerrance82@hotmail.com38197 Blanche Point33954Lake ForestMassachusettsArgentina
13WeldonBrockKovacekRoss_Reynolds@hotmail.com5403 Adonis Orchard72963-5127New UlicesMarylandNorth Macedonia
14BuddyMartyKutchEric.Steuber85@hotmail.com8744 Honeysuckle Close39038-9399SwaniawskifieldColoradoMontserrat
15DerickAxelMosciskiRaquel50@yahoo.com84887 Harris Gardens37931-1556ZulaufstadKentuckyRwanda
16LomaNoemieCrooksRollin_Hackett@yahoo.com398 Manley Freeway79155-0981JacintovilleDelawareTurkmenistan
17ShanieAaronBlockDawn22@yahoo.com5098 Farm Close96335Port JeremiefieldTennesseeMaldives
18DinaStuartZulaufCasimer27@yahoo.com40998 Magdalen Trace39820South DanielatownAlabamaCambodia
19ClydeLavonneKiehnElsie_Klocko81@yahoo.com226 Feil Estates84743-4325RaymundosideNew MexicoSierra Leone

Source Code

1import { useEffect, useMemo, useRef, useState } from 'react';
2import {
3 MaterialReactTable,
4 type MRT_ColumnDef,
5 type MRT_SortingState,
6 type MRT_Virtualizer,
7} from 'material-react-table';
8import { makeData, type Person } from './makeData';
9
10const Example = () => {
11 const columns = useMemo<MRT_ColumnDef<Person>[]>(
12 //column definitions...
57 );
58
59 //optionally access the underlying virtualizer instance
60 const rowVirtualizerInstanceRef =
61 useRef<MRT_Virtualizer<HTMLDivElement, HTMLTableRowElement>>(null);
62
63 const [data, setData] = useState<Person[]>([]);
64 const [isLoading, setIsLoading] = useState(true);
65 const [sorting, setSorting] = useState<MRT_SortingState>([]);
66
67 useEffect(() => {
68 if (typeof window !== 'undefined') {
69 setData(makeData(10_000));
70 setIsLoading(false);
71 }
72 }, []);
73
74 useEffect(() => {
75 //scroll to the top of the table when the sorting changes
76 try {
77 rowVirtualizerInstanceRef.current?.scrollToIndex?.(0);
78 } catch (error) {
79 console.error(error);
80 }
81 }, [sorting]);
82
83 return (
84 <MaterialReactTable
85 columns={columns}
86 data={data} //10,000 rows
87 enableBottomToolbar={false}
88 enableGlobalFilterModes
89 enablePagination={false}
90 enableRowNumbers
91 enableRowVirtualization
92 muiTableContainerProps={{ sx: { maxHeight: '600px' } }}
93 onSortingChange={setSorting}
94 state={{ isLoading, sorting }}
95 rowVirtualizerInstanceRef={rowVirtualizerInstanceRef} //optional
96 rowVirtualizerOptions={{ overscan: 8 }} //optionally customize the virtualizer
97 />
98 );
99};
100
101//virtualizerInstanceRef was renamed to rowVirtualizerInstanceRef in v1.5.0
102//virtualizerProps was renamed to rowVirtualizerOptions in v1.5.0
103
104export default Example;
105

View Extra Storybook Examples