数据表不允许折叠菜单

时间:2018-08-10 12:03:45

标签: jquery datatable

在数据表中插入搜索栏时,无法折叠菜单。(见图) Picture 1

因此,当我按(+)时,我什么也看不到,所以折叠不起作用。

代码

$(document).ready(function () {

    setTimeout(function () {

        // alert("ready!");
        $('.datatable-medical-map').DataTable({
            dom: 'Bfrtip',
            "bInfo": false,
            "bFilter": true,
            "paging": false,

            "scrollY": "200px",
            "scrollCollapse": true,

            "aaSorting": [[1, 'asc']],
            "scrollX" : true,


            //Dugmici, sve isto
            buttons: [
            ],
            columnDefs: [
                 {
                     targets: [0, 1, 2],
                     orderable: false
                 }
            ]
        });
        jQuery('.datatable-medical-map').wrap('<div class="dataTables_scroll" />');
    }, 2000);
});

演示

https://codepen.io/anon/pen/VBqNmb

0 个答案:

没有答案