有没有办法向 jqgrid Treeview 添加摘要行
我正在使用 jqgrid 与树形网格视图 和大多数列是在树上聚合的数字。缺少的一个部分是有一个总行来聚合顶级层次结构。 jqgrid 中是否有内置的东西来支持这一点,或者应该向下传递:
i am using jqgrid with the treegrid view and most of the columns are numbers that are aggregated up the tree. The one missing piece is having a total row to aggregate the top level hierarchy. Is there something built into jqgrid to support this or should be passed down the:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
树网格支持页脚行(参见此处的第二张图片)对于树形网格,其方式与标准网格相同。如果您计算服务器上摘要行的内容,则可以在 JSON 输入中使用
userdata
(请参阅 此处)。如果您想要自定义摘要行的格式,或者想要计算客户端上摘要行的值,您可以使用 footerData 内部的loadComplete
方法。有关示例,请参阅此处。以下简单的 演示 生成输出:
原始树形网格代码的更改如下:
Tree grid support footer row (see the second picture here) for tree grid in the same way like for the standard grid. If you calculate the content of the summary row on the server you can use
userdata
in the JSON input (see here). If you want have custom formatting of the summary row or if you want to calculate the values for the summary row on the client you can use footerData method inside ofloadComplete
for example. See here for an example.The following simple demo produce the output:
The changes in the original treegrid code are the following: