I am facing problem in bootstrap table where I have columns that doesn't fit in screen so I want to handle that in bootstrap-table by giving horizontal scrollbar there.
You can use bootstrap provided classes to achieve this,
<div>
<div class="table-responsive">
<table class="table table-striped table-bordered" style="width: 800px;">
<tr>-</tr>
</table>
</div>
You can add class ".table-responsive"
<div class="table-responsive">
<table class="table">
...
</table>
</div>
reference: https://getbootstrap.com/docs/4.1/content/tables/