Dojo EnhancedGrid:如何获取选定的列?
在dojo增强网格中,有什么方法可以获取选定的列吗? 目前我可以使用 grid.selection.getSelected() 获取选定的行,但我不知道如何获取选定的列。
In dojo enhanced grid, is there any way to get the selected columns?
Currently I can get selected rows by using grid.selection.getSelected() but I don't know how to get the selected column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了。
可以通过以下方式找到:theGrid.focus.cell.field。这将为您提供列名称。
如果您需要整数而不是列名,还有 theGrid.focus.cell.index 和 theGrid.focus.cell.layoutIndex 。
Solved.
Can be found with this: theGrid.focus.cell.field. This will give you the column name.
There is also theGrid.focus.cell.index and theGrid.focus.cell.layoutIndex if integer is what you need instead of column name.