I'm developing a web system using jsf and primefaces and would like to ask a question.
I'm using dataExporter
to export a dataTable
to PDF .... I'm using the preProcessor
method to add several things to the PDF document (header, footer, paragraphs, etc). The problem is that when I export the PDF the original table exported appears at the bottom of the page .... after everything I put through the preProcessor
method.
Questions:
- Is it possible to put this table elsewhere in the PDF without being at the end of it? Example, I wanted to put in the middle of the document between some texts that I put.
- Is it possible to "get" this exported table and place it wherever I want in the document?