Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个数据表,它的列包含输入文本字段,其中包含必需的 true 和必需的消息属性。因此,只要该数据表列中的一个以上字段为空,它就会多次显示相同的错误消息。但我只想显示该消息一次。
谁能帮我解决这个问题。
不要使用<h:messages>. 改用<h:message>可以绑定到特定输入的。
<h:messages>
<h:message>
<h:column> <h:inputText id="foo" required="true" /> <h:message for="foo" /> </h:column>