extjs 分组网格组标题的复选框
我有一个 ExtJs EditorGridPanel
配置有 GroupingStore
、GroupingView
和 CheckboxSelectionModel
。
复选框出现在网格的标题和所有行中。我也想将复选框放在组标题上。我的目的是让用户通过选择组标题的复选框来选择组下的所有记录。
有办法做到这一点吗?我正在使用 saki 的 ExtJs 3.1.1 和 RowActions 插件。
I am having a ExtJs EditorGridPanel
configured with a GroupingStore
, GroupingView
and a CheckboxSelectionModel
.
The Checkbox appears in the grid's header and in all the rows. I want to bring the checkbox on the group header also. My intention is to let the user select all records under a group by selecting the group header's checkbox.
Is there a way to do this? I'm using ExtJs 3.1.1 and RowActions plugin from saki.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了一种方法来实现此目的,使用 groupingView 中的 groupTextTpl 配置选项来呈现复选框并使用网格的 groupClick 事件来处理复选框单击事件。
可以找到更多信息
I found a way to acheive this using groupTextTpl config option in groupingView to render a checkbox and using groupClick event of grid to handle the checkbox click event.
more info could be found here