Re: [iText-questions] Header Footer with iText on JSP

2008-03-13 Thread davidc2
Table...and I also have to do Page # of # as well. I need to > do this in java code not in JSP though. I probably have older version of > iText as I don't have Phrase.addSpecial method in the library we are using > either. > > I appreciate any help anyone can provide. > >

Re: [iText-questions] Header Footer with iText on JSP

2008-03-04 Thread davidc2
ragraph.ALIGN_CENTER); document.setFooter(footer); document.open(); Getting page x of y, is going to be a fun ride, can someone make some suggestions please? Thanks. davidc2 wrote: > > It's too different for a jsp. I was looking into watermarks, and the code > on

Re: [iText-questions] Header Footer with iText on JSP

2008-03-04 Thread davidc2
uctor, and I can't find how to create a Phrase with tables, but I think that's what I'll need. I'll look into that, I understand it works as an ArrayList, so that is probably what I'll need to do. davidc2 wrote: > > Hey, > > I'm trying to use a PdfPTa

Re: [iText-questions] Header Footer with iText on JSP

2008-03-03 Thread davidc2
I saw that, and it's the same code that's on iText by example page but how do I change it so it works on a jsp page? mister bean wrote: > > See the book, starting at p. 432. There's an example of exactly what > you're looking to do. > > --mr.bea

[iText-questions] Header Footer with iText on JSP

2008-03-01 Thread davidc2
Hey, I'm trying to use a PdfPTable table as a header, but I'm not able to... I'm using PdfPTable table = new PdfPTable(3); on which I'm adding a bunch of cells, and it works, as long as I'm adding it to the Document (document.add(table);) But the only way I'm been able to have a header and a fo