i want to change the width of lass="dt-buttons btn-group flex-wrap" to col-md-8

i want to change the width of lass="dt-buttons btn-group flex-wrap" to col-md-8

latheefplatheefp Posts: 10Questions: 2Answers: 0

how can i change the width of parent div of "dt-buttons btn-group flex-wrap" to accommodate more buttons on same row.

I want to make first one as col-md-8 and second one as col-md-4

<div class="col-sm-12 col-md-8">
   <div class="dt-buttons btn-group flex-wrap">
</div>
</div>
<div class="col-sm-12 col-md-8">
   <div id="tblusers_filter" class="dataTables_filter"></div>
</div>

Replies

  • Bindrid2Bindrid2 Posts: 79Questions: 4Answers: 12

    in your definition, try something like...

    dom:'<"row"<"col" B>< "col-3" f>>t'

    It worked for me using bootstrap 4. All but 3 columns are handed over to the buttons.

This discussion has been closed.