没有数据时隐藏jquery数据表分页按钮

时间:2012-07-13 06:09:37

标签: jquery datatable pagination

如何在没有数据时隐藏jquery数据表分页按钮并显示自定义消息

2 个答案:

答案 0 :(得分:0)

添加代码以检查

if(num of records >0)
{
    // show pagination
}
else
{
    // no records message
}

答案 1 :(得分:0)

尝试以下代码。这对我有用。将此代码保存在datatables代码中。

    jQuery('#table_id').DataTable( {
        // Some stuff here
        "fnDrawCallback":function(){
             if(jQuery('table#table_id td').hasClass('dataTables_empty')){
                jQuery('div.dataTables_paginate.paging_full_numbers').hide();
             } else {
                jQuery('div.dataTables_paginate.paging_full_numbers').show();
             }
        }
    });