我正在使用带有 JSF 2 的 Primefaces 3.5 并有一个数据表:
<p:dataTable id="dataTable" var="refType"
value="#{rtmUiController.listAllRefTypes()}" paginator="true"
rows="10" filteredValue="#{rtmUiController.filteredRefTypes}"
paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
rowsPerPageTemplate="10,25,50,100" resizableColumns="true"
emptyMessage="No reference type found.">
该表包含带有大文本描述的以下列,该文本描述当前被内联截断并显示在链接旁边以弹出带有全文的对话框:
<p:column filterBy="#{refType.description}"
filterMatchMode="contains">
<f:facet name="header">
<h:outputText value="Description" />
</f:facet>
<h:outputText value="#{refType.description.substring(30)}" />
<p:commandLink id="descriptionLink" value="... (full text)"
oncomplete="descriptionDialog.show()"
update=":tabView:form1:descriptionPanel"
rendered="#{not empty refType.description}">
<f:setPropertyActionListener value="#{refType.description}"
target="#{flash.description}" />
</p:commandLink>
</p:column>
<p:dialog widgetVar="descriptionDialog" resizable="false"
header="Reference Type Description">
<p:panelGrid id="descriptionPanel" columns="1">
<h:outputText id="description" value="#{flash.description}" />
</p:panelGrid>
</p:dialog>
现在的问题是使用展示中的标准 primefaces dataExporter 功能将具有全文值的表格导出为 PDF 或任何其他格式,因为它仅导出表格的确切内容:
<h:panelGrid>
<p:panel header="Export Table Data">
<h:commandLink>
<p:graphicImage id="pdfImage" value="/resources/images/pdf.png" />
<p:dataExporter type="pdf" target="dataTable" fileName="refTypes"
showEffect="fade" hideEffect="fade" />
<p:tooltip for="pdfImage" value="Export table data to PDF file"
showEffect="fade" hideEffect="fade" />
</h:commandLink>
</p:panel>
</h:panelGrid>
所以请有人给我建议:
截断文本以在 dataTable 中显示的最佳方法是什么?
以及如何导出同一个表但已经具有全文值?