Hello,
I'm trying to realize a pdf report containing a table with repeatible header (one header for each page, of course), using an xml file like this:

<itext>
 <table>
   <row> <!-- row with header -->
     <cell>City</cell>
     <cell>Phone</cell>
     <cell>Name</cell>
   </row>
   <row>
     <cell>Rome</cell>
     <cell>06-12345</cell>
     <cell>Marzullo</cell>
   </row>
   <!--other rows and cells with data following -->
 </table>
</itext>

(in my example I would like to repeat City, Phone and Name header in every page)

Beacuse my implementation pattern, I'm using itext-xml to define the pdf document,
but I need to use endHeaders() method, which requires a code implementation.
Did I forget some tag/attribute in my xml file or I have to implement some
code, subclassing ITextHandler?
If so, please, may I have any suggestion?
Bye




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Reply via email to