数据表分页未显示

时间:2015-11-25 13:44:35

标签: jquery datatable

数据表的新功能,到目前为止,我已尝试过每个解决方案。

我有一个带有以下设置的数据表,但我无法显示分页按钮。

<script>
$(document).ready(function () {
    $('table[id^="commissionSummaryTable"]').dataTable({
        dom: 'frtB',

        scrollY: '50vh',
        scrollCollapse: true,
        "bAutoWidth": true,
        "pagingType": "full_numbers",
        "iDisplayLength": 20,
        "bLengthChange": false,
        ordering: false,

        buttons: [
            {
                extend: 'csv',
                className: 'btn btn-success',
                text: 'Export to Excel',
                //footer: true,
                title: 'Commissions Export'
            }
        ]
    });
});

任何建议都表示赞赏。

1 个答案:

答案 0 :(得分:4)

尝试更改dom参数:

dom: "fltip",