1

我试图弄清楚为什么我的 DataTables 表只有几个正方形用于下一个和上一个导航按钮,如此图像中所示。

在此处输入图像描述

表格信息后的 2 个灰色方块是用于导航的按钮。

我不知道为什么它们只会显示为几个正方形,而不是看起来像带有“下一个”和“上一个”文本的实际按钮,就像您在 DataTables 中使用 full_numbers 分页时一样。

我认为 CSS 或 javascript 中没有任何适用于这些按钮的内容会覆盖它们的外观。

我的 sDom 看起来像"sDom": '<"H"lfr>t<"F"ip>'

完整的表声明看起来像

$('#DataTable').dataTable({
        "sDom": '<"H"lfr>t<"F"ip>',
        "bProcessing": true,
        "bServerSide": true,
        "bAutoWidth": false,
        "sPaginationType": "two_button",
        "sAjaxSource": AjaxDataSource.URL,
        "aoColumns": [{ "sTitle": "ID" }, 
            { "sTitle": "Account Number" }, 
            { "sTitle": "Account Type" }],
        "bJQueryUI": true,
        "bStateSave": true,
        "iCookieDuration": 15
    }).fnSetFilteringDelay(1500);
4

0 回答 0