Jquery DataTable:对表行和列进行求和
我想创建一个表,其中显示行和列总和
页脚回调覆盖显示运行列总和 https://datatables.net/examples/advanced_init/footer_callback.html
但我会喜欢像下面这样的图片,一个页脚行对列进行求和,最后一列显示行总和,它应该与行和列过滤一起使用
有人可以告诉我如何使用 JQuery DataTables 做到这一点吗
I want to create a table where ROW AND COLUMN sums both are displayed
Footer Callback covers showing running column sums
https://datatables.net/examples/advanced_init/footer_callback.html
But I would like to have like below Picture a footer row summing the columns and the last column showing row sums and it should work together with row and column filtering
Could someone please tell me how to do it with JQuery DataTables
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要显示行的总和,您需要添加一个新列“总计”,就像图像中一样。您可以在此显示特定列的总和。
首先在
thead
中添加新的Total
然后在初始化dataTable时在
columns
中添加新列<前><代码> {
“目标”:0,
“数据”:空,
“渲染”:函数(数据,类型,行,元){
返回parseInt(row.column1,10) + parseInt(row.column2,10) + parseInt(row.column3,10);
}
}
To show the sum of row, you'll need to add a new column 'Total' just like in your image. You can show the sum of particular columns in this.
First add new
<th>Total</th>
in thethead
Then add new column in
columns
while initializing dataTable