JSF 2.0 验证摘要消息
使用 JSF 2.0 验证,是否有办法在出现错误时在提交时显示摘要消息(以及保留单个表单元素错误消息)?
我有一个很大的表单,所以我遇到的问题是,当用户单击“提交”时,它将在每个单独的表单元素旁边显示错误信息,但用户无法轻松判断页面上存在错误。
那么,常见或推荐的做法是什么?
Using JSF 2.0 validation, is there a way to have a summary message on submit if there is an error (as well as keeping individual form element error messages)?
I have a large form so the problem I am encountering is that when the user clicks "SUBMIT" it will display the error information next to each individual form element but the user cannot easily tell that errors exist on the page.
Along the lines, what is the common or recommended practice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个怎么样?
或者,您也可以仅使用 JavaScript 将焦点放在第一个无效的输入元素上。这是更常见的做法。
How about this?
Alternatively you can also just use JavaScript to put focus on the first invalid input element. That's a more common practice.
我通常
在页面顶部与组件的 label 属性一起使用来描述错误消息中的每个组件。
链接此处
和此处可能有用
I generally use
at the top of the page along with label attribute of components to describe each component in error message.
link here
and here might be useful