在primefaces中将面板数据导出为PDF和CSV格式?(不是数据表)

时间:2015-12-01 10:24:54

标签: jsf primefaces panel

        <p:panel id="panelwv" style="padding:0px;right:600px;"
                                widgetVar="panelwv" visible="false" closable="true"
                                toggleable="true">

                                <f:facet name="header">
                                    <h:outputText value="Save&nbsp;as&nbsp;&nbsp;" />
                                    <h:commandLink>
                                        <p:graphicImage value="resources/images/csv.png" />
                                        <p:dataExporter type="csv" target="panelwv"
                                            fileName="Monthly_Summary" />
                                    </h:commandLink>&nbsp;&nbsp;
                                    <h:commandLink>
                                        <p:graphicImage value="resources/images/pdf.png" />
                                        <p:dataExporter type="pdf" target="panelwv"
                                            fileName="Monthly_Summary" />
                                    </h:commandLink>
                                </f:facet>
      </p:panel>

具有动态数据的面板。我想导出数据pdf和csv格式。我在primefaces中使用<p:dataExporter>标记,但它显示不支持的数据源错误。请指出在{{1}中导出数据的任何解决方案}。

1 个答案:

答案 0 :(得分:0)

这是fine documentation

中所述的不可能
  

目标必须指向PrimeFaces数据表。

这是有原因的...使用它!