0

有带参数Primefaces 的文件上传组件auto="true"

...
<p:fileUpload fileUploadListener="#{uploadFileBean.upload}" mode="advanced" auto="true"/>  
...

auto="true", 上传图片后,图片预览消失了。

是否有可能,上传的图像(文件)预览保留在列表中,就像它工作一样,什么时候auto="false"

4

1 回答 1

0

您应该执行的三个步骤:

1.添加具有特定ID的图像预览容器,让它成为info
2.update="info"p:fileUpload 标签中添加参数
3.Primefaces覆盖引擎标准显示的容器CSS样式display:none,特别是这个:

.files{
    display:none;
}
于 2012-10-10T22:49:49.693 回答