来自p:commandLink
的回复未刷新input text
字段,其中具有相同值的output text
字段正在刷新。
这是我的代码。
<p:commandLink value="#{customerProfile.customerName}" style="font-size:13px !important"
styleClass="clickcolumn" title="select" immediate="true"
update="content-area:dataEntryForm:custName"
action="#{customerProfileBean.enableCustomerProfile}">
<f:param name="cust_id" value="#{rustomerProfile.rustomerId}" />
</p:commandLink>
和输入文本字段:
<h:inputText value="#{customerProfileFormBean.customer.customerName}" />
<h:outputText value="#{customerProfileFormBean.customer.customerName}" />
答案 0 :(得分:0)
我自己应该从immediate="true"
中排除p:commandLink
属性,这样可以解决问题。有关详细信息,请查看trying-to-understand-immediate-true-skipping-validation-when-it-shouldnt