当我们在某个字段上对行进行分组时,如何才能实现 JQGrid 的全局展开/折叠?
当我们在某个字段上对行进行分组时,如何才能实现 JQGrid 的全局展开/折叠?
在扩展时,它应该扩展所有组,在折叠时,它应该折叠所有组。
How can we have global Expand/Collapse for JQGrid when we have rows grouped on some field?
On expanding, it should expand all groups and on collapsing all groups should be collapsed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以像设置任何其他默认参数一样设置 jqGrid 的
groupingView
参数的groupCollapse
属性的默认值:UPDATED:经过评论中的额外解释后,我可以想象,在某些情况下,如果组中的任何组将展开/折叠,则所有组都将展开/折叠。
请参阅演示。
You can set default value of the
groupCollapse
property of thegroupingView
parameter of jqGrid in the same way like you set any other default parameter:UPDATED: After additional explanation in the comments I can me imagine that in some cases it can has the behavior when all groups will be expanded/collapsed if any from the groups will be expanded/collapsed.
See the demo.
对我来说就像一个魅力(来源)。
worked like a charm for me (source).