4.3.16 • Published 8 months ago

react-bootstrap-table-nextgen v4.3.16

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

react-bootstrap-table-nextgen

Next generation of react-bootstrap-table-nextgen

Live Demo

Usage

Installation

npm install react-bootstrap-table-nextgen --save

Include CSS

react-bootstrap-table-nextgen need you to add bootstrap css in your application firstly. About bootstrap css, we only compatible with bootstrap 3 but will start to compatible for bootstrap 4 on v0.2.0

// es5
require('react-bootstrap-table-nextgen/dist/react-bootstrap-table-nextgen.min.css');

// es6
import 'react-bootstrap-table-nextgen/dist/react-bootstrap-table-nextgen.min.css';

Your First Table

import BootstrapTable from 'react-bootstrap-table-nextgen';

const products = [ ... ];
const columns = [{
  dataField: 'id',
  text: 'Product ID'
}, {
  dataField: 'name',
  text: 'Product Name'
}, {
  dataField: 'price',
  text: 'Product Price'
}];

export default () =>
  <BootstrapTable keyField='id' data={ products } columns={ columns } />
4.3.9

8 months ago

4.3.8

8 months ago

4.3.7

8 months ago

4.3.13

8 months ago

4.3.12

8 months ago

4.3.11

8 months ago

4.3.10

8 months ago

4.3.16

8 months ago

4.3.15

8 months ago

4.3.14

8 months ago

4.3.6

8 months ago

4.3.5

8 months ago

4.3.4

9 months ago

4.3.3

9 months ago

4.3.2

9 months ago

4.3.1

9 months ago

4.3.0

9 months ago

4.2.0

9 months ago

4.1.0

9 months ago

4.0.5

9 months ago

4.0.4

9 months ago

4.0.3

9 months ago