Individual column searching (select inputs) display the search box at the top with scroll

Individual column searching (select inputs) display the search box at the top with scroll

denis.khucdenis.khuc Posts: 4Questions: 2Answers: 0

Hi,

From example https://datatables.net/examples/api/multi_filter_select.html

I use this following code to display the search box at the top :

tfoot {
display: table-header-group;
}

But when activating scroll bar the search box is displayed at the bottom.

$('#example').DataTable( {
"scrollY": "200px"
} );

Is there a way to display the search box at the top with the scroll activated?

Answers

  • jr42.gordonjr42.gordon Posts: 305Questions: 2Answers: 49

    In the linked example you provided, they append the select boxes to the table footer at line 7. If you want it in the header, replace .footer() with .header().

    Alternatively, you could check out https://github.com/vedmack/yadcf

This discussion has been closed.