ajax jquery と php で datatables プラグインを使用してテーブルを作成しました。公開、非公開を示すステータスの列があります....レコードの総数、公開済みの総数、および未公開の総数を表示したいのですが...これを行うことはできますか?
ここに私が試したものがあります
var oTable = $('#listings_row').dataTable( {
"iDisplayLength": 25,
"iDisplayStart": 0,
"bProcessing": true,
"bServerSide": true,
"sPaginationType": "full_numbers",
"sAjaxSource": "ajax_files/server_processing_rentals.php",
"fnRowCallback": function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) { return nRow;
}
} );