Datatables - Search Box outside datatable

前端 未结 11 1324
攒了一身酷
攒了一身酷 2020-11-30 17:08

I\'m using DataTables (datatables.net) and I would like my search box to be outside of the table (for example in my header div).

Is this possible ?

11条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-30 17:36

    This one helped me for DataTables Version 1.10.4, because its new API

    var oTable = $('#myTable').DataTable();    
    $('#myInputTextField').keyup(function(){
       oTable.search( $(this).val() ).draw();
    })
    

提交回复
热议问题