score:1

Accepted answer

react-bootstrap-table has this follow attributes to change the limit per page.

sizeperpagelist: [20, 50, 100],
onsizeperpagelist: this.onsizeperpagelist.bind(this), //number of items to be displayed
onpagechange: this.onpagechange.bind(this), //pagination tours

you can use bind a function on onsizeperpagelist to change the state variable that holds your limit.


Related Query

More Query from same tag