关于反馈面板

发布于 2024-11-02 14:58:28 字数 79 浏览 1 评论 0原文

我有“确定”和“取消”按钮。我使用了反馈面板。如果我选择取消按钮、日期时间,那么我仍然会收到反馈消息。

请你帮我解决这个问题吗?

I have "ok" and "cancel" button. I used feedback panel. If I select cancel button, date time, then I'm still getting a feedback messages.

Please could you help me out with this?

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

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

发布评论

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

评论(2

迷途知返 2024-11-09 14:58:29

我假设取消按钮仍然在您的代码中作为附加到表单的按钮。检票表单中的任何按钮都会尝试验证输入。无论如何,按钮不应该用于取消操作。如果您愿意,可以使用链接(这不会验证表单)并将其样式设置为按钮。

I'm assuming the cancel button is still in your code as a Button attached to the form. Any button in a wicket form will try and validate the input. Buttons shouldn't be used for canceling actions anyway. Use a link (this will not validate the form) and style it like a button if you wish.

街角迷惘 2024-11-09 14:58:28

在创建取消按钮时,您需要类似的内容

    Button cancel = new CancelButton();
    cancel.setDefaultFormProcessing(false);

这将导致表单处理绕过正常提交时完成的表单处理,包括验证。

In the creation of your cancel button, you want something resembling

    Button cancel = new CancelButton();
    cancel.setDefaultFormProcessing(false);

This will cause the form handling to bypass the form processing done on a normal submit, including validation.

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