- Support multi search(4874169)
- Add
multiColumnSearch={true} on <BootstrapTable>
- In search input text, you can use space to split search text, for example: "usa france japan" to search table which contain usa or feance or japan.
- Upgrade to react-toastr@2.2.2(2459c24)
- Fix header and body unalign(3f44200)
- The gap between table and pagination(c1a886b)
- Ensure default checkbox in editor is String(0ef45d0)
- Support
keyField(2fab4d8)
- Set
keyField in <BootstrapTable> to specify which column is key.
- Actually, this attribute is as same as the
isKey in <TableHeaderColumn>. So you can choose on to assign which column is key.
function onPageChange(page, sizePerPage){
...
}
var options = {
onPageChange: onPageChange
}
<BootstrapTable
data={products}
pagination={true}
options={options}
>...
}
function onSortChange(sortName, sortOrder){
...
}
var options = {
onSortChange: onSortChange
}
<BootstrapTable
data={products}
options={options}
>...
}
- Split toastr css with react-bootstrap-table css(06defe2)
react-bootstrap-table-all.min.css include toastr css
react-bootstrap-table.min.css doesn't include toastr css
- Updat dependencies for node@4.2.1(a3a7b0c)
- Remove deprecated .getDOMNode() calls(37b5c7e)
- Update examples UI and add react-router(4166580)
- use
npm start or gulp example-server to watch examples on localhost:3004

- Update TableDataSet missing pagination(46c93ce)
- Get selected Data only show in table when onSelectAll be called(9d391ee)
function onSelectAll(isSelected, currentDisplayAndSelectedData){
//..
}
- Remove toastr's css hard dependency(28e0b11)
- Fix window is undefinde if use react-bootstrap-table in isomorphic(f5db238)
- Adding Table with borderless feature(43e484f)
- Wrong Dependencies with react-toastr and toastr(bd16999)
- Fix key warning in PaginationList warning(9057e1c)
- Fix default sorting bug(3eb6dbe)
- Separate classname of header and body column
- Set className in <TableHeaderColumn> to define class on header
- Set columnClassName on <TableHeaderColumn> to define class on body's column
- Add cell edit validation and input type(select,checkbox,textarea)
- Add a complete examples Demo
- Run
gulp example-server and go to localhost:3004/example-list.html
- Give more customize features on Pagination
- Default pagination setting