节点检票口的单击事件

发布于 2024-10-25 10:09:07 字数 344 浏览 2 评论 0原文

您好,我有一个填充有各种数据(动态)的树视图。有没有办法将列表器添加到节点,然后检索已单击的内容?谢谢。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

£噩梦荏苒 2024-11-01 10:09:07

您可以将 AjaxEventBehavior 添加到由 onclick 事件触发的每个节点。

(如果您在问题中添加一些代码,我可以更具体。)

You can add an AjaxEventBehavior to each node that is triggered by the onclick event.

(If you add some code to the question, I can be more specific than that.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文