我通过在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;
}
} );
答案 0 :(得分:1)
您可以在(我假设)SQL数据库的查询中使用SUM
函数。