我在laravel项目中使用yajra数据表,我需要将总值放在页脚中,一旦加载了数据表,我将使其无法工作,如下图所示,我将总值传递给了与
控制器:
foreach($reporte_prestaciones as $prestaciones) {
$total += (int)$prestaciones->total_reembolso;
}
return Datatables::of($reporte_prestaciones)
->with('total_sum', $total)
->make(true);
如下图所示,datatable将列总数与data,recordsTotal,recordsFiltered一起发送。但我无法在页面页脚上打印总计结果。
查看:
reporte1.on('draw.dt', function(total_sum) {
$(".dataTables_info").append('. Sum of records per page ' + total_sum);
});
提前谢谢!