如何在可分页网格面板中保留复选框选择
我有一个用例,需要一个可分页的数据表,每行都有一个复选框选择,并且需要在分页时维护复选框选择。
到目前为止我能找到的最佳解决方案是:
http://blog.mersoft.com/2008/12/30/gwt-ext-retain-checkbox-selections-in-page-able-gridpanel/
有谁知道一个更简单的解决方案?
I have a use case that requires a data table that is pageable, has a checkbox selection per row, and needs to maintain the checkbox selections when paging.
The best solution I could find so far is:
http://blog.mersoft.com/2008/12/30/gwt-ext-retain-checkbox-selections-in-page-able-gridpanel/
Does anyone know a simpler solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们对 CheckBoxSelectionModel 进行子类化以引入此功能(包括全局全选/取消全选支持,如果您取消选择一项,则使用全选,我们仅跟踪一项未选择的项目;如果您选择一项,我们仅跟踪一项取消全选)所选择的那个)。
您必须重写方法并处理分页工具栏刷新等许多问题。
We subclassed CheckBoxSelectionModel to introduce this functionality (including global select-all/unselect-all support such that with select-all if you unselect one item, we only track the one unselected item and with unselect-all if you select one, we track just the one selected).
You'll have to override methods and deal with a lot of issues with refresh of the paging toolbar etc.