<p:dataTable id="tableDownDisp" var="arquivos" value="#{DownBean.listDonw}"
paginator="true" rows="5" rowKey="#{DownBean.idArquivo}"
selection="#{DownBean.downloadSelecionado}"
selectionMode="single"
paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink}
{PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
rowsPerPageTemplate="5,10">
<p:column headerText="# id" style="width:185px" >
<h:outputText value="#{arquivos.idArquivo}" />
</p:column>
<p:column headerText="Nome Do Arquivo" style="width:185px" >
<h:outputText value="#{arquivos.nome}" />
</p:column>
<p:column headerText="Tipo" style="width:185px">
<center>
<h:outputText value="#{arquivos.tipo}" />
</center>
</p:column>
<p:column headerText="Tamanho" style="width:185px">
<center>
<h:outputText value="#{arquivos.tamanho}" />
</center>
</p:column>
<p:column headerText="Data de Upload" style="width:185px">
<center>
<h:outputText value="#{arquivos.dataUpload}" >
<f:convertDateTime dateStyle="medium"/>
</h:outputText>
</center>
</p:column>
<p:column headerText="Compartilhado Por" style="width:185px">
<center>
<h:outputText value="#{arquivos.amigo}" />
</center>
</p:column>
<!--
<p:column headerText="Compartilhado Por" style="width:185px">
<p:commandButton value="Download" ajax="false"
onclick="PrimeFaces.monitorDownload(start, stop)"
icon="ui-icon-document"
oncomplete="CompartilharAqruivo.show()">
<p:fileDownload value="#{fileDownloadBean.file}" />
</p:commandButton>
</p:column>
-->
<f:facet name="footer">
<p:commandButton id="downloadLink" value="Download" ajax="false"
onclick="PrimeFaces.monitorDownload(start, stop)"
icon="ui-icon-document" >
<p:fileDownload value="#{fileDownloadBean.file}" />
</p:commandButton>
</f:facet>
</p:dataTable>
/carregar.xhtml @152,77 selection="#{DownBean.downloadSelecionado}": Cannot convert entidades.Download@ca35c9 of type class entidades.Download to class bean.DownBean