我在我的网站中使用数据表 jquery 插件。一切运作良好。
但是我试图通过使用插件脚本列过滤器来增强表格,然后我想总结页脚中的数据。我可以让过滤器正常工作。
数据表中用于汇总数据的示例仅适用于数据页面或整个数据集。
我找到了这个线程:http ://datatables.net/forums/discussion/2053/fnfootercallback-sum-column-after-filter/p1寻找类似的解决方案。作者建议使用以下功能:
._('td:nth-child(4)', {"filter": "applied"})
这显然返回了过滤数据的对象。但是,一旦我有了这个,我不知道从哪里开始添加数据
目前我的数据表脚本(为了帖子而缩短)看起来像这样:
table.dataTable({...
"fnFooterCallback": function ( nRow, aaData, iStart, iEnd, aiDisplay ) {
/*
* Calculate the total sales for the table (ie inc. outside
* the pagination)
*/
var iTotalSales = 0;
for ( var i=0 ; i<aaData.length ; i++ )
{
iTotalSales += aaData[i][2]*1;
}
/* Calculate the total sales on this page */
var iPageSales = 0;
for ( var i=iStart ; i<iEnd ; i++ )
{
iPageSales += aaData[ aiDisplay[i] ][2]*1;
}
/* Modify the footer row to match what we want */
var secondRow = $(nRow).next()[0];
var nCells = secondRow.getElementsByTagName('td');
nCells[0].innerHTML = accounting.formatMoney(iPageSales, "£ ", 2) +
' Page Total ('+ accounting.formatMoney(iTotalSales, "£ ", 2) +' Total Sales)';
}
})
.columnFilter({
aoColumns: [ { type: "date-range" },
null,
{ type: "text" },
{ type: "text" },
{ type: "select" },
{ type: "select" }
]
})
._('td:nth-child(4)', {"filter": "applied"});
我目前有一个如上所述的摘要,它显示页面上过滤的总数与表格的总数(所有数据不只是过滤)
我是 jquery 新手 - 我不确定从哪里开始操作在最终调用中创建的对象
谢谢