對於登記表我喜歡簡單的東西:如何使用MyFaces Trinidad僅顯示一個帶有<tr:panelLabelAndMessage>的驗證錯誤消息?
<tr:panelLabelAndMessage
label="Zip/City"
showRequired="true">
<tr:inputText
id="zip"
value="#{data['registration'].zipCode}"
contentStyle="width:36px"
simple="true"
required="true" />
<tr:inputText
id="city"
value="#{data['registration'].city}"
contentStyle="width:133px"
simple="true"
required="true" />
</tr:panelLabelAndMessage>
<tr:message for="zip" />
<tr:message for="city" />
當包括最後兩行,我得到驗證錯誤兩條消息。當忽略最後一行時,會顯示一個javascript警報,這不是我想要的。
是否有解決方案,以某種方式只顯示一個驗證失敗的消息?
非常感謝!