取消选择 Extjs 3 中网格的行
我有一个网格和一个按钮,可以让我选择该网格的所有行(mygrid.getSelectionModel().selectAll()) 但我希望当选择所有行并单击此按钮时,它会取消选择所有行。 我该怎么做?
谢谢你的帮助
I have a grid and a button that makes me select all the rows of this grid (mygrid.getSelectionModel().selectAll())
But i want that when all the rows are selected and i click to this button it deselct all the rows.
How can i do it ?
Thank you for helping
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要使用clearSelections(),而是使用deselectAll(),因为前者现已弃用。
instead of using clearSelections() use deselectAll() as the former is now deprecated.
您应该启用按钮的切换选项。
这是一个例子:
You should enable the toggle option for the button.
here is an example: