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
Examples
Simple Table
These are the bare minimum properties used to render the table above.
let columns = [{accessor: 'propertyName', // or Accessor eg. (row) => row.propertyNameHeader: 'MyHeader' // Used to render the header of a column or column group},...]
Simple Table with Row Click callback
Simple Table with Row Click callback
These are the bare minimum properties used to render the table above.
let columns = [{accessor: 'propertyName', // or Accessor eg. (row) => row.propertyNameHeader: '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},...]
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'},...]
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}...]
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} />}...]
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.
Table with collapsible content using SubComponent
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.
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 fileimport React from 'react';import { renderToString } from 'react-dom/server';import { DataTableProvider } from 'real-react';import App from './app';const Root = () => {return (<DataTableProvider><App /></DataTableProvider>);};