I am building a Java application using the JSF PrimeFaces library. I don't want to use an open source PDF library to generate reports. I have been trying to figure out to use PrimeFaces Extensions data exporter to generate a PDF file with many data tables. I am talking about this link: PrimeFaces Extensions
However, I am having problem with this particular piece of code:
<p:panel header="Export PDF">
<p:commandLink id="pdf" ajax="false">
<p:graphicImage value="/resources/images/pdf.png"/>
<f:setPropertyActionListener value="false" target="#{exporterController.customExporter}" />
<pe:exporter type="pdf" target="resumenTable,resumenTablePlan" fileName="example" datasetPadding="4"/>
</p:commandLink>
</p:panel>
I can't seem to find the implementation of #{exporterController.customExporter}
Could somebody please guide me so that I can find the implementation of the customerExporter method?