Wicket:如何从 FeedbackPanel 中发布反馈消息
我有一个带有 ComponentFeedbackPanels 的表单。我已经实现了一个过滤器,它删除了 ComponentFeedbackPanels 中显示的 FeedbackMessage (我已经改编了 此解决方案)来自页面顶部的反馈面板。 现在我想在顶层添加一条反馈消息,以提醒用户阅读表单字段旁边显示的 CompnoentFeedback 消息。 我不知道如何添加这样的消息。当已经过滤时,从该过滤器或 FeedbackPanel 或父页面中调用 error() 不会向当前 FeedbackPanel 添加任何内容...
I have a form with ComponentFeedbackPanels. I have implemented a Filter, that removes the FeedbackMessage shown in the ComponentFeedbackPanels (I have adapted this solution) from the top-of-the-page FeedbackPanel.
Now I would like to add a Feedback Message to the top level to remind the users to read CompnoentFeedback Messages that are displayed next to the form fields.
I don't know how to add such a message. Calling error() from within that filter or FeedbackPanel or the parent page when already filtering does not add anything to the current FeedbackPanel...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要添加顶级消息,请使用
Session.get().error(message)
。To add a top-level message, use
Session.get().error(message)
.