1

在 p:wizard 中,我在第一个选项卡中有一个文件上传。当,我移动到下一个选项卡上传的图像变空。如何解决这个问题,在第一个选项卡中设置图像。请任何人帮助我...... ……

<p:wizard>
    <p:tab id="tabbranch" title="Branch" titleStyle="font-size:14px;">  
        <p:panel id="display" >
            <h:panelGrid columns="2">
                <h:outputLabel value="Branch File" 
                    style="text-align: left;display: block;width:120px"/>
                <p:fileUpload value="#{branchBean.current.buildingPlan}" 
                    allowTypes="*.jpg;*.png;*.gif;" mode="simple" style="width:185px"/>     
            </h:panelGrid>  
        </p:panel>
    </p:tab>

    <p:tab title="Profile page 1" titleStyle="font-size:14px;">
        <p:panel>                   
            <h:outputLabel value="Name:*" style="text-align: left;display: block;width:130px;"/>
            <p:inputText value="#{branchBean.current.branchName}"
                readonly="#{searchBean.selectedCustomer.editAccess}"
                style="width:170px;" />
        </p:panel>
    </p:tab>
</p:wizard>
4

1 回答 1

0

来自 PrimeFaces 用户指南 3.5 ( http://primefaces.googlecode.com/files/indexed_primefaces_users_guide_3_5.pdf ):

1) 将以下库添加到您的项目中:commons-fileupload 1.2.1 和 commons-io 1.4;

2) 在您的 web.xml 中映射以下过滤器:

<filter>
   <filter-name>PrimeFaces FileUpload Filter</filter-name>
   <filter-class>
       org.primefaces.webapp.filter.FileUploadFilter
   </filter-class>
</filter>
<filter-mapping>
   <filter-name>PrimeFaces FileUpload Filter</filter-name>
   <servlet-name>Faces Servlet</servlet-name>
</filter-mapping>

Primefaces 用户指南中未解释:

1) 将您的 h:form 配置为 multipart/form-data

<h:form enctype="multipart/form-data">
于 2013-10-09T20:37:33.017 回答