关于反馈面板
我有“确定”和“取消”按钮。我使用了反馈面板。如果我选择取消按钮、日期时间,那么我仍然会收到反馈消息。
请你帮我解决这个问题吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设取消按钮仍然在您的代码中作为附加到表单的按钮。检票表单中的任何按钮都会尝试验证输入。无论如何,按钮不应该用于取消操作。如果您愿意,可以使用链接(这不会验证表单)并将其样式设置为按钮。
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.
在创建取消按钮时,您需要类似的内容
这将导致表单处理绕过正常提交时完成的表单处理,包括验证。
In the creation of your cancel button, you want something resembling
This will cause the form handling to bypass the form processing done on a normal submit, including validation.