ajax响应后输入文本字段未刷新

时间:2015-12-02 11:47:56

标签: ajax jsf primefaces

来自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}" />

1 个答案:

答案 0 :(得分:0)

我自己应该从immediate="true"中排除p:commandLink属性,这样可以解决问题。有关详细信息,请查看trying-to-understand-immediate-true-skipping-validation-when-it-shouldnt