I generate the HTML in my web app, then just convert it to a pdf with
this code :
ITextRenderer renderer = new ITextRenderer();
renderer.setDocument(url);
renderer.layout();
renderer.createPDF(os);
os.close();
The html table is just a standard plain html table.
Chris
On May 9, 12:48 pm, Naresh Chaurasia <
nc.java...@gmail.com> wrote:
> Can you provide the HTML containing the table. I believe you are passing the
> HTML as argument to ToPdf.java
>