早上好,我需要在 bootfaces 中实现 primefaces 的“p:dataExporter”,但我认为 bootfaces 无法实现此功能。我只需要将 b:dataTables 的数据导出到 Excel (CSV)。
是否可以执行此功能?在 PrimeFaces 中实现如下:
<p:dataTable id="tbl" var="car" value="#{dataExporterView.cars}"
paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {Exporters}"
paginator="true" rows="10" style="margin-bottom:20px">
<p:dataExporter type="csv" target="tbl" fileName="cars" pageOnly="true" />
非常感谢。