jQuery:使用“PicNet TableFilter”获取列的总计
我正在为我的表格使用 PicNet TableFilter: -http://www.picnet.com.au/picnet_table_filter.html
示例: http://www.picnet.com.au/resources/tablefilter/demo.htm
现在我需要一个动态总计行,用于对特定列进行求和。
我在这里找到了一个脚本: “使用 jQuery 添加表列中的所有值”
http://naspinski.net/post/Use-jQuery-to-add-all-the-values-in-a-table-column_.aspx
我已经实现了这个脚本我得到了我想要的列的总和。有用。
但是如果我使用 PicNet 过滤器并过滤表格,“总行”不会更改其值。它们似乎是静态的。
我认为 PicNet 脚本太难理解和编辑。
目标是获取总列行,该行根据过滤器的使用情况动态变化。
我希望你能帮助我或有任何替代方案的想法。
感谢您的每一个回答。
I am using PicNet TableFilter for my Table:
-http://www.picnet.com.au/picnet_table_filter.html
Example:
http://www.picnet.com.au/resources/tablefilter/demo.htm
Now I need a dynamic Totals Row, which sums specific columns.
I found a script here:
"Use jQuery to add all the values in a table column"
http://naspinski.net/post/Use-jQuery-to-add-all-the-values-in-a-table-column_.aspx
I have implemented this script and I get the sum of columns, which I want. It works.
But if I use the PicNet- filter and filter the table, the "Total Row" does not change its values. They seem to be static.
I think the PicNet Script is too difficult to understand and edit.
The target is to get a Total Column Row, which changes dynamically depending on the filter usage.
I hope you can help me or have an idea for any alternative.
Thank you for every answer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在此 TableFilter 函数中调用“求和”代码:filteredRows: function(filterStates) { call_SumCol(); } 请参阅 TableFilter 文档。
Try calling your "summing" code in this TableFilter function:
filteredRows: function(filterStates) { call_SumCol(); }
See the TableFilter documentation.