0

我有这个代码:

$('#ldap-users, #audit-users').dataTable({
    "sDom": "<'row'<'span6'l><'span6'f>r>t<'row'<'span6'i><'span6'p>>",
    "bInfo": false,
    "bProcessing": true,
    "bPaginate"  : true,
    "sPaginationType": "bootstrap",
    'aaSorting': [[1, "desc" ]],
});

我收到了这个错误:

Uncaught TypeError: Cannot read property '_iDisplayStart' of null

当我点击分页按钮

4

2 回答 2

1

这是由

"sPaginationType": "bootstrap",

删除/评论该行,您就可以了。猜猜您需要 nessecary 插件,请参阅 -> http://datatables.net/plug-ins/pagination,其中说:

注意本插件使用fnPagingInfo API插件方式获取分页信息

下面列出了该插件的源代码。

于 2013-10-11T12:01:56.480 回答
0

最后一个条目(aaSorting)之后的 , 是错误的。删除它并重试。

于 2013-10-11T10:16:22.773 回答