Datatables - Search Box outside datatable

前端 未结 11 1323
攒了一身酷
攒了一身酷 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:44

    You could move the div when the table is drawn using the fnDrawCallback function.

        $("#myTable").dataTable({
        "fnDrawCallback": function (oSettings) {
            $(".dataTables_filter").each(function () {
                $(this).appendTo($(this).parent().siblings(".panel-body"));
            });
        }
    });
    

提交回复
热议问题