首次加载到jquery数据表后,滚动设置无法维护

时间:2014-06-13 12:24:09

标签: jquery datatables jquery-datatables

我在bootsrap modalpopup中使用jquery数据表。在Grid中单击一行中的图标时,将打开modalpopup并且jquery数据表将在弹出窗口中显示我应用的设置。但是当我单击另一个图标(在Grid中的另一行)时,modalpopup中的jquery数据表应用我指定的所有设置,滚动设置除外。请查看下面的屏幕截图和代码。如何解决这个问题?

使用滚动条:

with scrollbar

没有滚动条:

enter image description here

代码:

 $(function () {
        $('#editstorelist').dataTable({
            "bDestroy":true,
            "sScrollY": "15vh",
            "bPaginate": false,
            "bScrollCollapse": true,
            "bAutoWidth": false,
            "bSort": false,
            "bFilter": false,
            'bLengthChange': false,
            "iDisplayLength": 4,
            "aaSorting": [],
            "aoColumns": [
                { sWidth: '15%' },
                { sWidth: '9%' },
                { sWidth: '19%' },
                { sWidth: '6%' }
            ],

        });

    });

0 个答案:

没有答案