HTML select on same line as Search
HTML select on same line as Search
bbrindza            
            
                Posts: 329Questions: 78Answers: 1            
            Hopefully this is a easy one.  I want to have a html select to show on the same line to the left of the search.

Here is the HTML I am currently using
<div class='row'>
    <div class='col-auto'>
        <label class='fw-bold'>Year:</label>
    </div>
    <div class='col-auto'>
        <select class='mr-2' name="OoO_yearSelect" id='OoO_yearSelect' style='width:4em' onchange='reloadOutOfOfficeTable()'></select>
    </div>
</div>
Here is the DataTables JS
 dom: 'frtip',
    language: {  search: 'Table Search: '},
                This discussion has been closed.
            
Answers
It it were DataTables 2, I'd suggest making a feature plug-in for it.
However, assuming that it is not, add a class to your
rowand float it left, or make the parent a flex and do the alignment that way. See this page for an excellent resource on flex box.Allan
Looks like you are using Datatables 1.x. For 1.x see this example. For 2.x see the Custom Controls examples in these
layoutoption examples.Kevin