如何在没有数据时隐藏jquery数据表分页按钮并显示自定义消息
答案 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();
}
}
});