react-data-components
DataTable: Live demo and source
SelectableTable: Live demo and source
Getting started
npm install react-data-components --save
Using the default implementation
The default implementation includes a filter for case insensitive global search, pagination and page size.
var React = ;var DataTable = DataTable; var columns = title: 'Name' prop: 'name' title: 'City' prop: 'city' title: 'Address' prop: 'address' title: 'Phone' prop: 'phone' ; var data = name: 'name value' city: 'city value' address: 'address value' phone: 'phone value' // It also supports arrays // [ 'name value', 'city value', 'address value', 'phone value' ]; React;
See complete example, see Flux example.
DataMixin options
keys: Array<string> | string
Properties that make each row unique, e.g. an id.
columns: Array<ColumnOption>
See Table
column options.
pageLengthOptions: Array<number>
initialData: Array<object | Array<any>>
initialPageLength: number
initialSortBy: { prop: string | number, order: string }
Table column options
title: string
The title to display on the header.
prop: string | number
The name of the property or index on the data.
render: (val: any, row: any) => any
Function to render a different component.
className: string | (val: any, row: any) => string
Class name for the td.