1
我正在使用datatables,它在表格末尾添加分頁。但是我只想在需要的時候顯示分頁控件,而不是在只有幾行的時候。我找不到任何地方來控制這一點。僅在需要時顯示分頁
$('#tblSubscriptions').dataTable({
"bProcessing": true,
"bServerSide": true,
"sServerMethod": "GET",
"aaSorting": [[0, 'asc']],
"sAjaxSource": "<?php echo base_url() . 'data/grid/' . $website['WebsiteId']; ?>",
"aoColumns": [
null,
null,
null,
{ "bSortable": false },
{ "bSortable": false },
{ "bSortable": false },
{ "bSortable": false }],
"bFilter" : false,
"bInfo" : false,
"sPaginationType": "two_button"
});