1.0.12 • Published 7 years ago

react-datatable-bs v1.0.12

Weekly downloads
7
License
MIT
Repository
github
Last release
7 years ago

react-datatable-bs

Demo

https://sonsoleslp.github.io/react-datatable-bs/example/

Getting started

npm install react-datatable-bs --save

This component is based on https://github.com/carlosrocha/react-data-components, but with some extra props that allow for further customization.

This component requires Bootstrap stylesheet and Font Awesome fonts, in addition to the stylesheet for headers. If you are using Webpack and the css-loader you can also require the css with require('react-datatable-bs/css/table-twbs.css').

Using the default implementation

The default implementation includes a filter for case insensitive global search, pagination and page size.

var React = require('react');
var ReactDOM = require('react-dom');
var DataTable = require('react-data-components').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' ]
];

ReactDOM.render((
    <DataTable
      keys="name"
      columns={columns}
      initialData={data}
      initialPageLength={5}
      initialSortBy={{ prop: 'city', order: 'descending' }}
    />
  ), document.getElementById('root'));

Additional configuration

If any of the component features are not wanted you can disable them by adding any of the following ( which by default are false):

  • disableFilter Remove search box
  • disableRowChoice Removes dropdown for page size
  • disablePagination Removes page navigation

Also, you can customize the labels (useful for internacionalization)

  • pageSizeLabel By default "Page size:"
  • searchLabel By default "Filter:"
  • searchPlaceholder By default empty
  • noDataLabel By default empty (It appears when the table is empty)
1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago