如何从智能 GWT 树网格检索多个选定的节点
我正在使用以下方法构建树网格(示例代码)
TreeGrid treeGrid = new TreeGrid() 树树 = new Tree(); treeGrid.setData(tree)
TreeNode newNode = new TreeNode(); newNode.setTitle("a1"); newNode.setID("a1Id"); 树.add(newNode, NAVPATH_ROOT); //(等等我添加多个节点)
这棵树的用户将能够选择多个树节点。但我无法检索所有选定的节点。 有一种名为 getSelectedRecord 的方法,它仅检索一条选定的记录。 是否有像 getSelectedRecords() 或 getSelectedNodes() 这样的方法可以提供所有选定的节点? 非常感谢您在这方面的帮助。 谢谢, 瓦姆西
I am constructing a Tree Grid using the below approach (Sample Code)
TreeGrid treeGrid = new TreeGrid()
Tree tree = new Tree();
treeGrid.setData(tree)
TreeNode newNode = new TreeNode();
newNode.setTitle("a1");
newNode.setID("a1Id");
tree.add(newNode, NAVPATH_ROOT); //(and So on I am adding multiple nodes)
The user of this tree will be able to select multiple Tree Node. But I am unable to retrieve all the selected nodes.
There is a method called getSelectedRecord which retrieves only one selected record.
Is there any method like getSelectedRecords() or getSelectedNodes() which will give all the selected nodes?
your help in this is much appreciated.
Thanks,
Vamsi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要为此使用 ListGrid.getSelection() 。 http://www.smartclient.com /smartgwt/javadoc/com/smartgwt/client/widgets/grid/ListGrid.html#getSelection()
You need to use ListGrid.getSelection() for that. http://www.smartclient.com/smartgwt/javadoc/com/smartgwt/client/widgets/grid/ListGrid.html#getSelection()