节点检票口的单击事件
您好,我有一个填充有各种数据(动态)的树视图。有没有办法将列表器添加到节点,然后检索已单击的内容?谢谢。
add(new AjaxLink("expandAll") {
@Override public void onClick(AjaxRequestTarget target) {
getTree().getTreeState().expandAll();
getTree().updateTree(target);
System.out.println("Click");
} });
这就是我到目前为止添加侦听器的方法,所做的只是扩展树。
Hi I have a treeview populated with various data (dynamic). Is there a way to add a lister to the nodes and then retrieve what has been clicked? Thanks.
add(new AjaxLink("expandAll") {
@Override public void onClick(AjaxRequestTarget target) {
getTree().getTreeState().expandAll();
getTree().updateTree(target);
System.out.println("Click");
} });
This is what i have so far for adding a listener, all this does is expand the tree.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
AjaxEventBehavior
添加到由onclick
事件触发的每个节点。(如果您在问题中添加一些代码,我可以更具体。)
You can add an
AjaxEventBehavior
to each node that is triggered by theonclick
event.(If you add some code to the question, I can be more specific than that.)