我正在尝试显示一张可以存储在内存中的一个文件夹中的图像,首先我正在尝试显示文件夹中的内容...
dialog
我用 a调用 acommandbutton
并且在里面dialog
有一个graphicImage
但它没有显示图像。
那么怎么了?
<p:dialog header="#{lbl['LABEL.ATENDENTE.IMAGEMCERTIFICADO']}" widgetVar="dlgViewCpfImagem" modal="true" resizable="false" closable="false" dynamic="true">
<h:form id="formDlgViewCpfImagem" enctype="multipart/form-data">
<p:messages id="messageDlgViewCpfImagem" showDetail="true"/>
<p:panelGrid styleClass="noBorders panelGridCenter gridNoBackground">
<p:row>
<p:column>
<p:graphicImage value="#{atendenteBean.fileCpf.getAbsolutePath()}"/>
</p:column>
</p:row>
</p:panelGrid>
</h:form>
<center>
<p:commandButton process="@this" value="#{lbl['BOTAO.FECHAR']}" oncomplete="dlgViewCpfImagem.hide()" update=":form:panelAnexarArquivo"/>
</center>
</p:dialog>
<p:column rendered="#{not empty atendenteBean.pojo.imgCpf}">
<p:commandButton process="@this" icon="botaoLog" styleClass="botaoImagem" oncomplete="dlgViewCpfImagem.show()"/>
</p:column>