No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

General Properties

PropertyTypeRequiredDefaultDescription
columnsarrayyes[]DataTable column definitions
dataarrayno[]It's highly recommended that your data have a unique identifier (keyField). The default keyField is id. If you need to override this value then use the keyField proeprty below
keyFieldstringno'id'Your data MUST HAVE a unique identifier. By default, React Data Table looks for an id property on each item in your data. You must match keyField to that identifier key.

If a unique id is not present, React Data Table will attempt to use the row index and by reference checks as fallbacks, however, certain features will not work correctly
titlestring or componentnoThe title displayed in the Table Header. If you do not provide the title property the Table Header will not be rendered
ariaLabelstringnoAdds aria-label attribute to the table for accessibility purposes. If you do not provide the ariaLabel property aria-label will not be added at all
responsivebooleannotrueMakes the table horizontally scrollable on smaller screen widths
stripedbooleannofalseStripe/band color the odd rows
highlightOnHoverbooleannofalseIf rows are to be highlighted on hover
pointerOnHoverbooleannofalseIf rows show a point icon on hover
densebooleannofalseCompacts the row height. can be overridden via theming rows.denseHeight.

Note: If any custom elements exceed the dense height then the row will only compact to the tallest element any of your cells
noTableHeadbooleannofalseHides the the sort columns and titles (TableHead).


Note: This negates sorting
persistTableHeadbooleannofalseShow the table head (columns) even when progressPending is true.

Note: The noTableHead will always hide the table head (columns) even when using persistTableHead
noDataComponentstring or componentnobuilt-inA custom component to display when there are no records to display
disabledbooleannofalseDisables the Table section
directionstringnoautoAccepts: ltr, rtl, or auto. When set to auto (default), RDT will attempt to detect direction by checking the HTML and DIV tags. For cases where you need to force rtl, or ltr just set this option manually (i.e. SSR).

If you are using Typescript or prefer enums you can import { Direction } from 'react-data-table-component'; and use `Direction.AUTO, Direction.LTR, or Direction.RTL
onRowClicked(row, event) => {}noCallback to access the row, event on row click.


Note: If you are using custom cells (column[].cell), you will need to apply the data-tag="allowRowEvents" to the innermost element or on the elements you want to propagate the onRowClicked event to.
onRowDoubleClicked(row, event) => {}noCallback to access the row, event on row double click.

Note: If you are using custom cells (column[].cell), you will need to apply the data-tag="allowRowEvents" to the innermost element or on the elements you want to propagate the onRowDoubleClicked event to.
onRowMouseEnter(row, event) => {}noCallback to access the row, event on the mouse entering the row.
onRowMouseLeave(row, event) => {}noCallback to access the row, event on the mouse leaving the row.

Columns

PropertyTypeRequiredDefaultDescription
onColumnOrderChange(nextOrder) => {}noreturns an array of TableColumns

Sorting

PropertyTypeRequiredDefaultDescription
defaultSortFieldIdstring or numbernonullThe defaultSortFieldId sets the a column to be pre sorted and corresponds to the a column definition id
defaultSortAscbooleannotrueSet this to false if you want the table data to be sorted in DESC order.

Note: This will apply work when the table is initially loaded
sortIconcomponentnobuilt-inOverride the default sort icon - the icon must be a font or svg icon and it should be a "downward" icon since animation will be handled by React Data Table
sortServerbooleannofalseDisables internal sorting for use with server-side/remote sorting or when you want to manually control the sort behavior. place your sorting logic and/or api calls in an onSort handler.

Note: sortFunction is a better choice if you simply want to override the internal sorting behavior
sortFunctionSee descriptionnonullPass in your own custom sort function. Your function must return an new array reference, otherwise RDT will not re-render. For example, Array.sort sorts the array in place but because of JavaScript object equality it will be the same reference and will not re-render. A common pattern is to return yourArray.slice(0) which creates a new array.

Type: (rows, selector, direction) => {}
onSortSee descriptionnoCallback to access the sort state when a column is clicked. Returns (column, sortDirection, event). See Columns for Column Definitions API.

Type: (selectedColumn, sortDirection, sortedRows) => {}

Row Selection

PropertyTypeRequiredDefaultDescription
selectableRowsbooleannofalseWhether to show selectable checkboxes
selectableRowsVisibleOnlybooleannofalseWhen using using pagination and selectableRows all rows in data are selected by default if you check the select all rows checkbox. For example, if you have 20 rows and with pagination 10 rows per page clicking on the select all checkbox results in 20 rows being selected (i.e. rows are selected that are not in the view). However, with selectableRowsVisibleOnly only the 10 rows that are visible (those that are on the current page) are allowed to be selected using select all.

Things to note when using selectableRowsVisibleOnly:
1. When you sort then selected items will be cleared
2. When using sortServer for server side sorting you do not need to set selectableRowsVisibleOnly as the behavior is implicit
selectableRowsHighlightbooleannofalseHighlight a row when it is selected
selectableRowsSinglebooleannofalseSwitches to single row selection mode. onSelectedRowsChange will still return an array of selectedRows, but it will only be a single array item
selectableRowsNoSelectAllbooleannofalseWhether to show the select all rows checkbox
clearSelectedRowsbooleannofalseToggling this property clears the selectedRows. If you use redux or react state you need to make sure that you pass a toggled value or the component will not update. See Clearing Selected Rows
selectableRowsComponentcomponentnobuilt-inOverrides the default checkbox component. Must be passed as: Checkbox not <Checkbox />. You can also find UI Library Integration examples here
selectableRowsComponentPropsobjectnoAdditional props you want to pass to selectableRowsComponent. See Material UI Example to learn how you can override indeterminate state
selectableRowSelected(row) => {}noSelect a row based on a property in your data. e.g. row => row.isSelected. selectableRowSelected must return a boolean to determine if the row should be programatically selected.

Important Notes:
- Changing the state of selectableRowSelected will NOT re-render RDT, instead you should change your data if you want to update the items that are selected.
- When using selectableRowsSingle selectableRowSelected will only return the first match
selectableRowDisabled(row) => {}noDisable row select based on a property in your data. e.g. row => row.isDisabled. selectableRowDisabled must return a boolean to determine if the row should be programatically disabled.
onSelectedRowsChangeSee descriptionnoCallback that fires anytime the rows selected state changes. Returns ({ allSelected, selectedCount, selectedRows }).

Type: ({ allSelected; selectedCount; selectedRows }) => {}

Note: It's highly recommended that you memoize the callback that you pass to onSelectedRowsChange if it updates the state of your parent component. This prevents DataTable from unnecessary re-renders every time your parent component is re-rendered.

Row Expander

PropertyTypeRequiredDefaultDescription
expandableRowsbooleannofalseWhether to make a row expandable, if true it requires an expandableRowsComponent. It is highly recommended your data set have a unique identifier defined as the keyField for row expansion to work properly.
expandableIconobjectnodefault expander iconsyou may pass in your own custom icons using the expandableIcon: { collapsed: <svg>...</svg>, expanded: <svg>...</svg> }
expandableRowExpanded(row) => {}noExpand a row based on a property in your data. e.g. row => row.expandMe. expandableRowExpanded must return a boolean to determine if the row should be programatically expanded.
expandableRowDisabled(row) => {}noDisable a row expand based on a property in your data. e.g. row => row.expandDisabled. expandableRowDisabled must return a boolean to determine if the row should be programatically disabled.
expandableRowsComponentcomponentnoA custom component to display in the expanded row. Must be passed as: MyExpander not <MyExpander />. Your component will have access to the row data. For example: const MyExpander = props => <div>{props.data.name}</div>
expandableRowsComponentPropsobjectnoAdditional props you want to pass to your custom expandableRowsComponent. By default expandableRowsComponent will have a data prop that you may access the row data with. New props added via expandableRowsComponentProps wil be composed
expandOnRowClickedbooleannoThe default behavior is to expand the row when the expander button is clicked. expandOnRowClicked allows expanding the row when an area within the row is clicked. Requires expandableRows be set to true.

Note: that if you are using custom cells (column[].cell), you will need to apply the data-tag="allowRowEvents" to the innermost element or on the elements you want to propagate the expandOnRowClicked event to.
expandOnRowDoubleClickedbooleannoThe default behavior is to expand the row when the expander button is clicked. expandOnRowDoubleClicked allows expanding the row when an area within the row is double clicked. Requires expandableRows be set to true.

Note: that if you are using custom cells (column[].cell), you will need to apply the data-tag="allowRowEvents" to the innermost element or on the elements you want to propagate the expandOnRowDoubleClicked event to.
expandableRowsHideExpanderbooleannofalseDo not render the expander button. This is useful when using expandOnRowClicked or expandOnRowDoubleClicked
expandableInheritConditionalStylesbooleannofalseWhether to apply conditionalRowStyles to the expander row
onRowExpandToggledSee descriptionnoWhen a row is Expanded or Collapsed onRowExpandToggled will fire and return (toggleState, row).

Type: (expanded, row) => {}

Pagination

PropertyTypeRequiredDefaultDescription
paginationbooleannofalseEnable pagination with defaults. by default the total record set will be sliced depending on the page, rows per page. if you wish to use server side pagination then use the paginationServer property
paginationServerbooleannofalseChanges the default pagination to work with server side pagination
paginationServerOptionsobjectnoSee descriptionWhen using selectableRows is used to make selected rows persist on page change and on sort when using server side pagination.

Default value: { persistSelectedOnPageChange: false, persistSelectedOnSort: false }

Note: when using persistSelectedOnPageChange that select all checkbox will not be visible (i.e. you cannot select rows there you have to retrieved from the server)
paginationDefaultPagenumberno1The default page to use when the table initially loads
paginationResetDefaultPagebooleannofalseThe prop can be "toggled" to reset the pagination back to paginationDefaultPage. For this to work make sure you are using some sort of state and toggling the prop. e.g. setResetPaginationToggle(!resetPaginationToggle) or for a class component setState(resetPaginationToggle: !resetPaginationToggle)
paginationTotalRowsnumberno0Allows you to provide the total row count for your table as represented by your API when performing server side pagination. if this property is not provided then react-data-table will use data.length
paginationPerPagenumberno10The default rows per page to use when the table initially loads
paginationRowsPerPageOptionsnumberno[10, 15, 20, 25, 30]Row page dropdown selection options
paginationComponentcomponentnoPaginationA component that overrides the default pagination component. It must satisfy the following API: { rowsPerPage: PropTypes.number.isRequired, rowCount: PropTypes.number.isRequired, onChangePage: PropTypes.func.isRequired, onChangeRowsPerPage: PropTypes.func.isRequired, currentPage: PropTypes.number.isRequired }
paginationComponentOptionsobjectnoSee descriptionOverride options for the built in pagination component. Note that this prop only works with the built-in Pagination component.

Default value: { rowsPerPageText: 'Rows per page:', rangeSeparatorText: 'of', noRowsPerPage: false, selectAllRowsItem: false, selectAllRowsItemText: 'All' }
paginationIconFirstPagecomponentnobuilt-inA component that overrides the first page icon for the pagination.

Note: that this prop only works with the build in Pagination component*
paginationIconLastPagecomponentnobuilt-inA component that overrides the last page icon for the pagination.

Note: that this prop only works with the build in Pagination component*
paginationIconNextcomponentnobuilt-inA component that overrides the next page icon for the pagination.

Note: that this prop only works with the build in Pagination component*
paginationIconPreviouscomponentnobuilt-inA component that overrides the previous page icon for the pagination.

Note: that this prop only works with the build in Pagination component*
onChangePageSee descriptionnonullCallback that fires when page is changed and returns onChangePage (page, totalRows).

Type: (page, totalRows) => {}
onChangeRowsPerPageSee descriptionnonullCallback that fires when rows per page is changed and returns onChangeRowsPerPage (currentRowsPerPage, currentPage).

Type: (currentRowsPerPage, currentPage) => {}

Headers

PropertyTypeRequiredDefaultDescription
actionscomponentnonullAdd actions to the TableHeader
noHeaderbooleannofalseRemoves the table header. title, contextTitle and contextActions will be ignored
fixedHeaderbooleannofalseMakes the table header fixed allowing you to scroll the table body
fixedHeaderScrollHeightstringno100vhIn order for fixedHeader to work this property allows you to set a static height to the TableBody. height must be a fixed value
subHeaderbooleannofalseShow a sub header between the table and table header
subHeaderAlignstringnorightAlign the sub header content (left, right, center)
subHeaderWrapbooleannotrueWhether the sub header content should wrap
subHeaderComponentcomponentnonullA component you want to render

Header Context Menu when using Selectable Rows

PropertyTypeRequiredDefaultDescription
contextMessageobjectnoSee descriptionOverride the context menu selected message when using selectableRows.

Default value: { singular: 'item', plural: 'items', message: 'selected' }
contextActionscomponentnonullAdd context actions to the context menu when using selectableRows
contextComponentcomponentnonullOveride the default context menu when using selectableRows with your own custom componet. RDT will compose the selectedCount prop to your custom component. For example, const CustomContext = (selectedCount) => <div>{selectedCount}</div> gives you access to the row count.

Note: This will negate contextMessage and contextActions
noContextMenubooleannofalseDo not display the context menu when using selectableRows

Progress/Loading Indicator

PropertyTypeRequiredDefaultDescription
progressPendingbooleannoDisables the table and displays a plain text Loading Indicator
progressComponentcomponentnoAllows you to use your own custom progress component. Note that in some cases (e.g. animated/spinning circular indicators) you will need to add a wrapping div with padding.

Theming and Customization

PropertyTypeRequiredDefaultDescription
themestringnodefaultPossible values are default or dark
customStylesobjectnostyles.js for a detailed catalog of RDT styles that you can override or extend using css-in-js objects