Edit page
Home
Getting Started
Components
AlertAnimateHeightAvatarAvatarListBadgeButtonButtonMenuCalendarCalendarRangeCardCarouselChipClickOutsideContainerContentLoaderCurrencyDataTablePropsExamplesDatePickerDateTimePickerDividerDrawerDropdownFloatingActionsGoogleMapGridIconIconDotIfInfiniteScrollKW LogoLoaderModalMonthPickerMonthRangeNavIconOptionsTogglePaginationPartnerLogoResponsiveSVG IconSnackbarStaticMapStatusIndicatorTabTableTimePickerToastsTooltip
Forms
Typography
Utilities
Visualization Components

DataTable

DataTable provides an Excel-like grid component built with React that supports things like fixed headers, custom cell renderers, row selection, sorting, reordering, show/hide, etc... Uses the open-source React Table component.

Props

PaginationComponent
node │ Function
DefaultPaginationComponent
SubComponent
Func
ThComponent
node │ Function
DefaultThComponent
className
String
clearCheckboxesOnDataChange
Bool
true
columns
Array<{ "Cell": "element │ string │ Function", "Header": "element │ string │ Function", "accessor": "string │ Function", "id": "string", "sortable": "Boolean", "resizable": "Boolean", "show": "Boolean", "width": "number", "minWidth": "number", "maxWidth": "number", "className": "string", "style": "{}", "columns": "Array<{}>" }>
required
data
Array<any>
defaultPageSize
Number
8
defaultSortDesc
Bool
false
defaultSortMethod
Func
initialSelected
Array<any>
onResizedChange
Func
() => {}
onSelection
Func
pageSize
Number
selectable
Bool
false
selectableColumnOptions
{ "fixed": "'left' │ 'right'" }
{ fixed: 'left', }
showPagination
Bool
false
style
{ "maxHeight": "number", "minHeight": "number" }

Examples

Simple Table

Name
Last name
Street address
Orelle
Hubbert
56741 Stoughton Alley
Lindsy
Franzonetti
523 Crest Line Avenue
Shepherd
Olivas
215 Thackeray Park
Brock
Plumm
2 Hanson Drive
Lloyd
Ramme
547 Mitchell Place
Yetty
Bordessa
971 Morrow Way
Hewie
Hedin
5588 Mosinee Terrace
Con
Littefair
1811 Duke Circle
Loading...

These are the bare minimum properties used to render the table above.

let columns = [
{
accessor: 'propertyName', // or Accessor eg. (row) => row.propertyName
Header: 'MyHeader' // Used to render the header of a column or column group
},
...
]

Simple Table with Row Click callback

Name
Last name
Street address
Orelle
Hubbert
56741 Stoughton Alley
Lindsy
Franzonetti
523 Crest Line Avenue
Shepherd
Olivas
215 Thackeray Park
Brock
Plumm
2 Hanson Drive
Lloyd
Ramme
547 Mitchell Place
Yetty
Bordessa
971 Morrow Way
Hewie
Hedin
5588 Mosinee Terrace
Con
Littefair
1811 Duke Circle
Loading...

Simple Table with Row Click callback

Name
Last name
Street address
Orelle
Hubbert
56741 Stoughton Alley
Lindsy
Franzonetti
523 Crest Line Avenue
Shepherd
Olivas
215 Thackeray Park
Brock
Plumm
2 Hanson Drive
Lloyd
Ramme
547 Mitchell Place
Yetty
Bordessa
971 Morrow Way
Hewie
Hedin
5588 Mosinee Terrace
Con
Littefair
1811 Duke Circle
Loading...

These are the bare minimum properties used to render the table above.

let columns = [
{
accessor: 'propertyName', // or Accessor eg. (row) => row.propertyName
Header: 'MyHeader' // Used to render the header of a column or column group
},
...
]

Simple Table with Sortable Columns

In this scenario the columns that are sortable need to have a sortable: true property. To set a default sort for the table, you can use the defaultSortDesc prop. To override the default sorting algorithm for the whole table use the defaultSortMethod prop. To override the sorting algorithm for a single column, use the sortMethod column property.

let columns = [
{
accessor: 'firstName',
Header: 'Name',
sortable: true
},
{
accessor: 'streetAddress',
Header: 'streetAddress',
sortable: true
},
...
]
Name
Last name
Street address
Orelle
Hubbert
56741 Stoughton Alley
Lindsy
Franzonetti
523 Crest Line Avenue
Shepherd
Olivas
215 Thackeray Park
Brock
Plumm
2 Hanson Drive
Lloyd
Ramme
547 Mitchell Place
Yetty
Bordessa
971 Morrow Way
Hewie
Hedin
5588 Mosinee Terrace
Con
Littefair
1811 Duke Circle
Loading...

Simple Table with Fixed Columns

In this scenario, the columns that are locked need to have a fixed: oneOf(['left', 'right']) property.

let columns = [
{
accessor: 'skill',
Header: 'skill',
fixed: 'left'
},
{
accessor: 'gender',
Header: 'gender',
fixed: 'right'
},
...
]
skill
Name
Last name
Street address
university
team
hometown
email
gender
MS Integration Services
Orelle
Hubbert
56741 Stoughton Alley
Universidad Diego Portales
ohubbert0@hibu.com
Female
NDC
Lindsy
Franzonetti
523 Crest Line Avenue
Shanghai Dainji University
lfranzonetti1@springer.com
Female
401k Rollovers
Shepherd
Olivas
215 Thackeray Park
Yaroslavl State Medical Academy
solivas2@dedecms.com
Male
RPOs
Brock
Plumm
2 Hanson Drive
Methodist College
bplumm3@elpais.com
Male
IQ Navigator
Lloyd
Ramme
547 Mitchell Place
Universidad de Puerto Rico, Cayey
lramme4@dagondesign.com
Male
Ion Channels
Yetty
Bordessa
971 Morrow Way
Chung-Ang University
ybordessa5@businessinsider.com
Female
IEC 61850
Hewie
Hedin
5588 Mosinee Terrace
National University of Shipbuilding
hhedin6@mysql.com
Male
Ambulatory Care
Con
Littefair
1811 Duke Circle
Instituto Tecnológico de Aguascalientes
clittefair7@furl.net
Male
Loading...

Simple Table with Resizable Columns

In this scenario, the columns that are resizable need to have a resizable: true property. You can attach an onResizedChange function to the table to capture any resize events.

let columns = [
{
accessor: 'lastName',
Header: 'last name',
resizable: true
}
...
]
Name
Last name
Street address
Orelle
Hubbert
56741 Stoughton Alley
Lindsy
Franzonetti
523 Crest Line Avenue
Shepherd
Olivas
215 Thackeray Park
Brock
Plumm
2 Hanson Drive
Lloyd
Ramme
547 Mitchell Place
Yetty
Bordessa
971 Morrow Way
Hewie
Hedin
5588 Mosinee Terrace
Con
Littefair
1811 Duke Circle
Loading...

Table with Custom Cell Component

In this scenario, the columns that will use a Custom Cell, need a Cell: oneOfType([element, string, func]) column property.

let columns = [
{
accessor: 'firstName',
Header: 'first name',
Cell: meta => <SampleAvatarCustomCell {...meta} />
}
...
]
Name
Last name
Street address
city
state
postal code
OrelleHubbert
Hubbert
56741 Stoughton Alley
El Paso
Texas
79940
LindsyFranzonetti
Franzonetti
523 Crest Line Avenue
Montgomery
Alabama
36125
ShepherdOlivas
Olivas
215 Thackeray Park
New York City
New York
10292
BrockPlumm
Plumm
2 Hanson Drive
Honolulu
Hawaii
96805
LloydRamme
Ramme
547 Mitchell Place
Chicago
Illinois
60691
YettyBordessa
Bordessa
971 Morrow Way
Dallas
Texas
75372
HewieHedin
Hedin
5588 Mosinee Terrace
Scottsdale
Arizona
85271
ConLittefair
Littefair
1811 Duke Circle
Chicago
Illinois
60614
Loading...

Table with Checkbox Selection

In this example, the table has checkboxes to select rows and displays them. It also supports shift selection, select/unselect all. This is enabled by using the selectable prop on the table itself. If there's need to listen to changes, there's an onSelection table prop too.

An initialSelected array of identifiers can be provided to render the table with rows already selected.

Name
Last name
Street address
Orelle
Hubbert
56741 Stoughton Alley
Lindsy
Franzonetti
523 Crest Line Avenue
Shepherd
Olivas
215 Thackeray Park
Brock
Plumm
2 Hanson Drive
Lloyd
Ramme
547 Mitchell Place
Yetty
Bordessa
971 Morrow Way
Hewie
Hedin
5588 Mosinee Terrace
Con
Littefair
1811 Duke Circle
Loading...

Table with collapsible content using SubComponent

Name
Last name
Street address
✈️
Orelle
Hubbert
56741 Stoughton Alley
✈️
Lindsy
Franzonetti
523 Crest Line Avenue
✈️
Shepherd
Olivas
215 Thackeray Park
✈️
Brock
Plumm
2 Hanson Drive
✈️
Lloyd
Ramme
547 Mitchell Place
✈️
Yetty
Bordessa
971 Morrow Way
✈️
Hewie
Hedin
5588 Mosinee Terrace
✈️
Con
Littefair
1811 Duke Circle
Loading...

Table with pagination enabled

Use showPagination to enable it. A custom PaginationComponent can be used to render anything you want as pagination, a default one is included.

Name
Last name
Street address
✈️
Orelle
Hubbert
56741 Stoughton Alley
✈️
Lindsy
Franzonetti
523 Crest Line Avenue
✈️
Shepherd
Olivas
215 Thackeray Park
✈️
Brock
Plumm
2 Hanson Drive
✈️
Lloyd
Ramme
547 Mitchell Place
✈️
Yetty
Bordessa
971 Morrow Way
✈️
Hewie
Hedin
5588 Mosinee Terrace
✈️
Con
Littefair
1811 Duke Circle
✈️
Bradford
MacGowing
49980 Dovetail Plaza
✈️
Lonnard
Aggio
8 Mayfield Way
Loading...

SSR Compatibility

To use this component for SSR, you need to wrap your application with DataTableProvider. This will avoid SSR mismatch warnings by syncing the generated ID's for the table on both server and client. 🎉

// In your root app file
import React from 'react';
import { renderToString } from 'react-dom/server';
import { DataTableProvider } from 'real-react';
import App from './app';
const Root = () => {
return (
<DataTableProvider>
<App />
</DataTableProvider>
);
};