Cant Get Show Entries on Same Line

Cant Get Show Entries on Same Line

77vetter77vetter Posts: 5Questions: 1Answers: 0

I cant get the "Show [] Entries" on the same line. I have played around with the DOM option and no matter what setting i use Show is on one line, [] is on another line, and Entries is on the third line

I am using bootstrap 4 so not sure if that is the issue. Here is my table:

<table id="data-table" class="table table-striped table-bordered mt-2">

And here is my initialization of the table:

$(document).ready(function () {
            $('#data-table').DataTable({
                dataSrc: 'list',
                dom: 'rfltip',
                bRetrieve: true,
                //data: data,
                columns: [...]
});

How can i get Show [] Entries all on the same line????

TIA

This question has an accepted answers - jump to answer

Answers

This discussion has been closed.