我有一个带三个标签的AccordionPanel。在第一个选项卡中是一个具有所需inputTexts的表单。现在我遇到了问题,错误信息显示在所有三个选项卡中,而不仅仅是一个。有什么建议吗?如何仅为一个选项卡设置所需输入的错误消息?
<p:accordionPanel dynamic="true" cache="true">
<p:tab title="Change your details" id="tabDetails">
<p:messages id="message1" showDetail="true" autoUpdate="true" closable="true" />
<h:panelGrid columns="2" cellpadding="10" id="gridDetails">
<h:outputText value="First name: *" />
<p:inputText value="#{login.current.firstName}" id="firstName" required="true" />
<!-- ... -->
<p:commandButton value="save" actionListener="#{login.saveModifications}" update="gridDetails"/>
</h:panelGrid>
</p:tab>
<p:tab title="Change your password" id="tabPass">
<p:messages id="message2" showDetail="true" autoUpdate="true" closable="true"/>
<h:panelGrid columns="3" cellpadding="10" id="gridPass">
<!-- ... -->
<p:commandButton value="save" actionListener="#{login.changePassword}" update="gridPass" />
</h:panelGrid>
</p:tab>
<!-- ... -->
</p:accordionPanel>
感谢您的帮助!
答案 0 :(得分:2)
默认情况下p:messages
显示视图中的每条JSF消息。如果您只想显示特定的属性,则需要使用属性for
。
在你的情况下,应该这样做:
<p:accordionPanel dynamic="true" cache="true">
<p:tab title="Change your details" id="tabDetails">
<p:messages id="message1" for="btn1" showDetail="true" autoUpdate="true" closable="true" />
<h:panelGrid columns="2" cellpadding="10" id="gridDetails">
<h:outputText value="First name: *" />
<p:inputText value="#{login.current.firstName}" id="firstName" required="true" />
<!-- ... -->
<p:commandButton id="btn1" value="save" actionListener="#{login.saveModifications}" update="gridDetails"/>
</h:panelGrid>
</p:tab>
<p:tab title="Change your password" id="tabPass">
<p:messages id="message2" for="btn2" showDetail="true" autoUpdate="true" closable="true"/>
<h:panelGrid columns="3" cellpadding="10" id="gridPass">
<!-- ... -->
<p:commandButton id="btn2" value="save" actionListener="#{login.changePassword}" update="gridPass" />
</h:panelGrid>
</p:tab>
<!-- ... -->
</p:accordionPanel>
注意:我已在您的操作组件中添加了特定ID(p:commandButton
)。
更多信息: