有什么方法可以在普通文件中导出摘要行中的总计吗?

Is there any way to export total in summary row in a plain file?

我正在使用 primefaces 8.0 显示具有部分结果的数据 table。我的意思是,每天的总数量。在视图中它有效,但是当我尝试导出它时,它没有显示任何总数。我一直在网上搜索,他们谈论使用 primefaces 扩展,但它对我也不起作用。

这是我的数据table

<p:dataTable id="Opcion1" value="#{llamadaBean.lista1}" var="lista1" rows="50"
                         paginator="true"
                         paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
                         currentPageReportTemplate="{startRecord}-{endRecord} of {totalRecords} records"
                         sortBy="#{lista1.fecha}">
                <p:column headerText="FECHA">
                    <p:outputLabel value="#{lista1.fecha}"/>
                </p:column>
                <p:column headerText="HORA">
                    <p:outputLabel value="#{lista1.hora}"/>
                </p:column>
                <p:column headerText="TRANSACCIONES">
                    <p:outputLabel value="#{lista1.numTransacciones}"/>
                </p:column>
                <p:summaryRow>
                    <p:column colspan="2" style="text-align:right">
                        <h:outputText value="Total:" />
                    </p:column>
                    <p:column>
                        <h:outputText value="#{lista1.totalTransacciones}">                                        
                        </h:outputText>
                    </p:column>
                </p:summaryRow>
            </p:dataTable>

有什么帮助吗?

目前无法在 PF 或 PFE 中导出摘要行。

您将不得不编写自定义导出器。您可以在 GitHub.

上将其报告为增强票请求

查看 PF 展示中的 TextExporter 示例:https://www.primefaces.org/showcase/ui/data/dataexporter/basic.xhtml