4.3.16 • Published 2 years ago
react-bootstrap-table-nextgen v4.3.16
react-bootstrap-table-nextgen
Next generation of react-bootstrap-table-nextgen
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
2 years ago
4.3.8
2 years ago
4.3.7
2 years ago
4.3.13
2 years ago
4.3.12
2 years ago
4.3.11
2 years ago
4.3.10
2 years ago
4.3.16
2 years ago
4.3.15
2 years ago
4.3.14
2 years ago
4.3.6
2 years ago
4.3.5
2 years ago
4.3.4
2 years ago
4.3.3
2 years ago
4.3.2
2 years ago
4.3.1
2 years ago
4.3.0
2 years ago
4.2.0
2 years ago
4.1.0
2 years ago
4.0.5
2 years ago
4.0.4
2 years ago
4.0.3
2 years ago