bmcgin wrote:
> Is is possible to use PdfContentByte (and related functions) to create each
> page individually and then manually trigger a new page break when needed?
That's documented:
http://1t3xt.be/?X1a3
http://1t3xt.be/?X0a4
Have a close look at the TablesInColumns example.
You could take th
When we make a columnar report, we basically use PdfPTable, PdfCell,
setHeaderRows() and document.add(). We are not using the PdfContentByte and
ColumnText.
So we have no indication that the page is breaking.
Is is possible to use PdfContentByte (and related functions) to create each
page i
bmcgin wrote:
> We built a CF/itext library to generate columnar reports and flexible
> multi-table like reports all in cf custom tags. We have created literally a
> few hundred reports with these cf tags. Now we are getting requirements
> that are hard for us to do in cf, like foxing continued
This is a long explanation…may be best to give as much detail as possible
because I are not experts with itext
Generating the PDF in CF is a bit different doing it in Java.
A few years ago when we first downloaded and integrated itext into CF there
was not much on the web about how to do i
bmcgin wrote:
> Thanks for you help.
>
> We are accessing itext through Coldfusion and have not yet figured out how
> to access page event functions.
I'm not talking about page events, but about table and cell events.
Are you sure that table events don't work in CF?
I'm not a CF user, so I don't
Thanks for you help.
We are accessing itext through Coldfusion and have not yet figured out how
to access page event functions. I recently found a blog that describes how
to get access and plan to implement soon.
--
View this message in context:
http://old.nabble.com/itext-column-he
bmcgin wrote:
> We use itext to create PDFs from within coldfusion. Most of the PDFs are
> built with tables and the table spans many pages. We use the
> setHeaderRows(1) function so that the column headers can roll to the next
> page.
>
> Is it possible to add the word “(continued)” beside
We use itext to create PDFs from within coldfusion. Most of the PDFs are
built with tables and the table spans many pages. We use the
setHeaderRows(1) function so that the column headers can roll to the next
page.
Is it possible to add the word “(continued)” beside the label on pages
2-end?