DataTable使用垂直滚动条固定宽度

时间:2013-12-19 20:52:39

标签: javascript jquery html css datatables

我正在使用DataTable。

我有以下表格:

表1

Data Table 1

表2 Data Table 2 这是我的初始化代码:

$('#invoice-content-table').dataTable({
    "bPaginate": false,
    "sScrollY": "150px",
    "bPaginate": false,
    "bLengthChange": false,
    "bFilter": false,
    "bSort": false,
    "bInfo": false,
    "bAutoWidth": false,
    "bDestroy": true,
    "aoColumns": [{
            "sWidth": "170px"
        }, {
            "sWidth": "30px"
        }, {
            "sWidth": "30px"
        }, {
            "sWidth": "40px"
        }, {
            "sWidth": "25px"
        }, {
            "sWidth": "25px"
        }, {
            "sWidth": "25px"
        }, {
            "sWidth": "25px"
        }, {
            "sWidth": "25px"
        }, {
            "sWidth": "30px"
        }, {
            "sWidth": "50px"
        }

    ]
});

有没有办法修复scroll-y滚动,即使它不包含任何数据?

0 个答案:

没有答案