Not showing searchpanes
Not showing searchpanes
i initialiate datatable enabling the searchpanes deatures but doesnt show it at all.
this are the reference i used
<link href="https://cdn.datatables.net/1.13.4/css/jquery.dataTables.min.css" rel="stylesheet" />
<link href="https://cdn.datatables.net/searchpanes/2.1.2/css/searchPanes.dataTables.min.css" rel="stylesheet" />
<link href="https://cdn.datatables.net/select/1.6.2/css/select.dataTables.min.css" rel="stylesheet" />
<script src="https://cdn.datatables.net/1.13.4/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/searchpanes/2.1.2/js/dataTables.searchPanes.min.js"></script>
<script src="https://cdn.datatables.net/select/1.6.2/js/dataTables.select.min.js"></script>
This question has an accepted answers - jump to answer
Answers
See the SearchPanes initialization docs. You need to add
P
to thedom
option to place the SearchPanes. Example based on your above code:Kevin
thank you kevin!