Table component with fixed headers and virtualized rows for improved performance with large data sets. This component expects explicit width, height, and padding parameters.
Property | Type | Required? | Description |
---|---|---|---|
children | FlexColumn | ✓ | One or more FlexColumns describing the data displayed in this table |
className | String | Optional custom CSS class name to attach to root FlexTable element. |
|
disableHeader | Boolean | Do not render the table header (only the rows) | |
estimatedRowSize | Number | Used to estimate the total height of a FlexTable before all of its rows have actually been measured. The estimated total height is adjusted as rows are rendered. |
|
gridClassName | String | Optional custom CSS class name to attach to inner Grid element | |
gridStyle | Object | Optional inline style to attach to inner Grid element | |
headerClassName | String | CSS class to apply to all column headers | |
headerHeight | Number | ✓ | Fixed height of header row |
headerStyle | Object | Optional custom inline style to attach to table header columns. | |
height | Number | ✓ | Fixed/available height for out DOM element |
noRowsRenderer | Function | Callback used to render placeholder content when :rowCount is 0 | |
onHeaderClick | Function | Callback invoked when a user clicks on a table header. (dataKey: string, columnData: any): void |
|
onRowClick | Function | Callback invoked when a user clicks on a table row. ({ index: number }): void |
|
onRowDoubleClick | Function | Callback invoked when a user double-clicks on a table row. ({ index: number }): void |
|
onRowMouseOut | Function | Callback invoked when the mouse leaves a table row. ({ index: number }): void |
|
onRowMouseOver | Function | Callback invoked when a user moves the mouse over a table row. ({ index: number }): void |
|
onRowsRendered | Function | Callback invoked with information about the slice of rows that were just rendered: ({ overscanStartIndex: number, overscanStopIndex: number, startIndex: number, stopIndex: number }): void |
|
overscanRowCount | Number | Number of rows to render above/below the visible bounds of the list. This can help reduce flickering during scrolling on certain browers/devices. | |
onScroll | Function | Callback invoked whenever the scroll offset changes within the inner scrollable region: ({ clientHeight: number, scrollHeight: number: number, scrollTop: number }): void |
|
rowClassName | String or Function | CSS class to apply to all table rows (including the header row). This value may be either a static string or a function with the signature ({ index: number }): string . Note that for the header row an index of -1 is provided. |
|
rowCount | Number | ✓ | Number of rows in table. |
rowGetter | Function | ✓ | Callback responsible for returning a data row given an index. ({ index: int }): any |
rowHeight | Number or Function | ✓ | Either a fixed row height (number) or a function that returns the height of a row given its index: ({ index: number }): number |
rowRenderer | Function | Responsible for rendering a table row given an array of columns.: ({ className: string, columns: Array, index: number, isScrolling: boolean, onRowClick: ?Function, onRowDoubleClick: ?Function, onRowMouseOver: ?Function, onRowMouseOut: ?Function, rowData: any, style: any }): PropTypes.node . Learn more |
|
rowStyle | Object or Function | Optional custom inline style to attach to table rows. This value may be either a style object or a function with the signature ({ index: number }): Object . Note that for the header row an index of -1 is provided. |
|
rowWrapperClassName | String or Function | Optional custom CSS class name to attach to Grid__cell element. If function given then signature should be look like: ({ index: number }): PropTypes.string |
|
rowWrapperStyle | Object or Function | Optional custom inline style for Grid__cell elements. If function given then signature should be look like: ({ index: number }): PropTypes.object |
|
scrollToAlignment | String | Controls the alignment scrolled-to-rows. The default ("auto") scrolls the least amount possible to ensure that the specified row is fully visible. Use "start" to always align rows to the top of the list and "end" to align them bottom. Use "center" to align them in the middle of container. | |
scrollToIndex | Number | Row index to ensure visible (by forcefully scrolling if necessary) | |
scrollTop | Number | Vertical offset | |
sort | Function | Sort function to be called if a sortable header is clicked. ({ sortBy: string, sortDirection: SortDirection }): void |
|
sortBy | String | Data is currently sorted by this dataKey (if it is sorted at all) |
|
sortDirection | SortDirection | Data is currently sorted in this direction (if it is sorted at all) | |
style | Object | Optional custom inline style to attach to root FlexTable element. |
|
tabIndex | Number | Optional override of inner Grid tab index default; defaults to null . |
|
width | Number | ✓ | Width of the table |
Forcefull re-render the inner Grid
component.
Calling forceUpdate
on FlexTable
may not re-render the inner Grid
since it uses shallowCompare
as a performance optimization.
Use this method if you want to manually trigger a re-render.
This may be appropriate if the underlying row data has changed but the row sizes themselves have not.
Pre-measure all rows in a FlexTable
.
Typically rows are only measured as needed and estimated heights are used for cells that have not yet been measured. This method ensures that the next call to getTotalSize() returns an exact size (as opposed to just an estimated one).
Recompute row heights and offsets after the specified index (defaults to 0).
FlexTable
has no way of knowing when its underlying list data has changed since it only receives a rowHeight
property.
If the rowHeight
is a number it can compare before and after values but if it is a function that comparison is error prone.
In the event that a dynamic rowHeight
function is in use and the row heights have changed this function should be manually called by the "smart" container parent.
This method will also force a render cycle (via forceUpdate
) to ensure that the updated measurements are reflected in the rendered table.
The FlexTable component supports the following static class names
Property | Description |
---|---|
FlexTable | Main (outer) element |
FlexTable__headerColumn | Header cell (similar to thead > tr > th ) |
FlexTable__headerRow | Header row (similar to thead > tr ) |
FlexTable__row | Table row (akin to tbody > tr ) |
FlexTable__rowColumn | Table column (akin to tbody > tr > td ) |
FlexTable__sortableHeaderColumn | Applied to header columns that are sortable |
FlexTable__sortableHeaderIcon | SVG sort indicator |
This is an advanced property.
It is useful for situations where you require additional hooks into FlexTable
(eg integration with a library like react-sortable-hoc
).
If you do want to override rowRenderer
the easiest way is to decorate the default implementation like so:
import { SortableContainer, SortableElement } from 'react-sortable-hoc'
import { defaultFlexTableRowRenderer, FlexTable } from 'react-virtualized'
const SortableFlexTable = SortableContainer(FlexTable)
const SortableFlexTableRowRenderer = SortableElement(defaultFlexTableRowRenderer)
function rowRenderer (props) {
return <SortableFlexTableRowRenderer {...props} />
}
function CustomizedFlexTable (props) {
return (
<SortableFlexTable
rowRenderer={rowRenderer}
{...props}
/>
)
}
If you require greater customization, you may want to fork the defaultFlexTableRowRenderer
function.
This function accepts the following named parameters:
Property | Description |
---|---|
className | Row-level class name |
columns | Array of React nodes |
index | Row index |
isScrolling | Boolean flag indicating if FlexTable is currently being scrolled |
onRowClick | Optional row onClick handler |
onRowDoubleClick | Optional row onDoubleClick handler |
onRowMouseOver | Optional row onMouseOver handler |
onRowMouseOut | Optional row onMouseOut handler |
rowData | Row data |
style | Row-level style object |
Below is a very basic FlexTable
example. This table has only 2 columns, each containing a simple string. Both have a fixed width and neither is sortable. See here for a more full-featured example including custom cell renderers, sortable headers, and more.
import React from 'react';
import ReactDOM from 'react-dom';
import { FlexTable, FlexColumn } from 'react-virtualized';
import 'react-virtualized/styles.css'; // only needs to be imported once
// Table data as a array of objects
const list = [
{ name: 'Brian Vaughn', description: 'Software engineer' }
// And so on...
];
// Render your table
ReactDOM.render(
<FlexTable
width={300}
height={300}
headerHeight={20}
rowHeight={30}
rowCount={list.length}
rowGetter={
({ index }) => list[index]
}
>
<FlexColumn
label='Name'
dataKey='name'
width={100}
/>
<FlexColumn
width={200}
label='Description'
dataKey='description'
/>
</FlexTable>,
document.getElementById('example')
);