AllenFang / react-bootstrap-table

A Bootstrap table built with React.js
https://allenfang.github.io/react-bootstrap-table/
MIT License
2.24k stars 782 forks source link

How to get the table data which is filtered #2021

Open narayanchoudhary opened 5 years ago

narayanchoudhary commented 5 years ago

While filtering the table data on entering some text in the filters. I want to display the total of filtered data of a column, which has numerical data. Basically I want a callback something like below <BootstrapTable onFilter=( filteredData ) => { // Calculate total of a column then // setState } />