Jquery DataTable:对表行和列进行求和

发布于 2025-01-09 01:51:05 字数 476 浏览 0 评论 0原文

我想创建一个表,其中显示行和列总和

页脚回调覆盖显示运行列总和 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

enter image description here

Could someone please tell me how to do it with JQuery DataTables

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北座城市 2025-01-16 01:51:05

要显示行的总和,您需要添加一个新列“总计”,就像图像中一样。您可以在此显示特定列的总和。

  • 首先在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 the thead

  • Then add new column in columns while initializing dataTable

     {
       "targets": 0,
       "data": null,
       "render": function ( data, type, row, meta ) {
                return parseInt(row.column1,10) + parseInt(row.column2,10) + parseInt(row.column3,10);
       }
     }
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文