Re: [iText-questions] Re naming TextFields on different pages using iText is not working..

2009-12-14 Thread jthom
Can someone give some suggestion on what I could do to remove the overlaying text? By setting stamper formflattening to false is how we were able to see that overlay was happening. Any hint to the cause of the problem is appreciated. Thanks jthom wrote: > > Thanks for the hints to rename the pa

Re: [iText-questions] Re naming TextFields on different pages using iText is not working..

2009-12-10 Thread jthom
Thanks for the hints to rename the parent. I bought the IText in action book. I was able to rename the parent fields in each page. But when the output pdf is generated, the data shown in each page is for Page1. When we saved the pdf and double clicked on the fields, we can see that actual valu

Re: [iText-questions] Re naming TextFields on different pages using iText is not working..

2009-11-24 Thread 1T3XT info
jthom wrote: > This is my first time using iText: > > Could you give little more info in how the parent can be renamed? Get the /AcroForm from the root. Parse the tree with the fields, replace the /T value of the field you want to change. If this is your first time using iText: ask a profession

Re: [iText-questions] Re naming TextFields on different pages using iText is not working..

2009-11-23 Thread jthom
This is my first time using iText: Could you give little more info in how the parent can be renamed? After creating new text fields for each single page, we are combining the pages together. There is only one page that is getting modified at a time, so 1 was passed to addAnnotation method.

Re: [iText-questions] Re naming TextFields on different pages using iText is not working..

2009-11-23 Thread 1T3XT info
jthom wrote: > In our method logic, as the rename field to the left of the last dot is not > working, Of course not. The dots indicate there's a field hierarchy. If you want to rename a parent, rename the parent; don't rename the child! > they are getting added to > the wrong place ie. to page 1.

[iText-questions] Re naming TextFields on different pages using iText is not working..

2009-11-23 Thread jthom
We are trying to concatenate PDF pages generated dynamically, and show different data in each page. Each page should have its own unique set of 7 text fields. Using a sample 1 page pdf template, additional pages need to be generated dynamically under certain conditions. In our method logic, as th