react-bootstrap-table icon indicating copy to clipboard operation
react-bootstrap-table copied to clipboard

How to set table is responsesive same boostrap table

Open psknew opened this issue 6 years ago • 1 comments

I want to set my table is responsesive same https://getbootstrap.com/docs/4.3/content/tables/ now my table is this picture
mytable

psknew avatar May 20 '19 16:05 psknew

Try adding width to TableHeaderColumns without units, only number.

Case which worked for me was like this:

          <TableHeaderColumn
            width="90"
            dataField="button"
            dataFormat={this.editButtonFunction.bind(this)}>
            Actions
          </TableHeaderColumn>

This will add horizontal scroll to your table when you try to reduce size width of the window.

prvakor19-22 avatar Feb 10 '20 12:02 prvakor19-22