在 wicket 中,如何从面板内 ajax 组件的 onSubmit 刷新反馈面板?

发布于 2024-09-27 21:34:49 字数 176 浏览 4 评论 0原文

我的页面顶部有一个反馈面板。

我有许多面板,每个面板都有带有 AjaxFallback 链接的子面板,单击这些链接时我想设置要在反馈面板中显示的 info() 消息。

我是否必须将反馈面板向下传递到面板层,以便在单击链接时可以将其重新添加到 Ajax 目标?或者还有别的办法吗?

谢谢,汤姆

I have a feedback panel at the top of my page.

I have a number of panels, each have sub panels with AjaxFallback links that, when clicked I want to set info() messages to be displayed in the feedback panel.

Do I have to pass my feedback panel down through the layers of panels in order that I can re-add it to the Ajax target when the link is clicked? Or is there another way?

Thanks, Tom

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

-柠檬树下少年和吉他 2024-10-04 21:34:49

Wicket 6 中的以下作品

    target.addChildren(getPage(), FeedbackPanel.class);

The following works in Wicket 6

    target.addChildren(getPage(), FeedbackPanel.class);
梦里人 2024-10-04 21:34:49

有些东西必须将其添加到目标中,但是有一些方法可以使用间接,这样就不需要传递太多东西。请参阅这篇博客文章 一种策略。

Wicket 1.5 中添加了类似的内容。有关此添加的错误跟踪,请参阅 WICKET-1312

Something has to add it to the target, but there are ways of using indirection so that things don't need to be passed around as much. See this blog article for one tactic.

Something similar is being added in Wicket 1.5. See WICKET-1312 for bug-tracking about this addition.

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