当在Update属性中提及时,是否可以指示JSF Primefaces中没有更新的组件ID?

时间:2019-02-13 08:32:44

标签: jsf primefaces

我在使用FileUpload组件时遇到麻烦,该组件在更新父容器时会更新/重新加载。我不希望fileUpload组件更新,因为它会产生与页面上相同类型的现有组件有关的错误。

<p:outputPanel id="parentContainer">
    <p:fileUpload label="Browse" id="fileUploadComponent" mode="advanced" customUI="true"
                                      allowTypes="jpg,gif,pdf,docx,doc" sizeLimit="#{1 * 1024 * 1024}"
                                      uploadLabel="Upload" cancelLabel="Cancel" auto="true"
                                      update="parentContainer"
                                      fileUploadListener="#{mbean.upload}"/>
    <p:commandLink value="Save" action="#{mbean.save}" update="parentContainer" />
</p:outputPanel>

0 个答案:

没有答案