Re: [iText-questions] PDF Forms on Google App Engine

2012-09-25 Thread 1T3XT BVBA
On 25/09/2012 11:03, mima wrote: > Hi! I am trying to create a pdf with google app engine and it isn't work yet. > I would to know what itext library version are yo using? If you want to deploy on GAE, you need the GAE version of iText. See http://lowagie.com/iPadSchools for a GAE implementation by

Re: [iText-questions] PDF forms .... display popup with custom data.

2012-01-23 Thread Balder VC
On 23/01/12 17:38, namrata.s...@us.sogeti.com wrote: > Hello All, > > I have a predefined pdf fillable form which has text boxes and some > other controls on it. > > When the user opens the pdf I need to show a popup containing a list of > some custom values when a user selects and right clicks

Re: [iText-questions] PDF forms .... display popup with custom data.

2012-01-23 Thread Leonard Rosenthol
Write the appropriate JavaScript. From: namrata.s...@us.sogeti.com [mailto:namrata.s...@us.sogeti.com] Sent: Monday, January 23, 2012 11:39 AM To: itext-questions@lists.sourceforge.net Subject: [iText-questions] PDF forms display popup with custom data. Hello All, I have a predefined pdf f

Re: [iText-questions] PDF Forms on Google App Engine

2011-04-08 Thread Nitin Tomer
Ok sirs. I am at it :-) Regards Nitin -Original Message- From: Balder Sent: 08/04/2011, 7:13 PM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] PDF Forms on Google App Engine We also took a look at your PDF and when looking at the form, we noticed there are

Re: [iText-questions] PDF Forms on Google App Engine

2011-04-08 Thread Nitin Tomer
Ok sirs. I am at it :-) Regards Nitin -Original Message- From: Balder Sent: 08/04/2011, 7:13 PM To: itext-questions@lists.sourceforge.net Subject: Re: [iText-questions] PDF Forms on Google App Engine We also took a look at your PDF and when looking at the form, we noticed there are

Re: [iText-questions] PDF Forms on Google App Engine

2011-04-08 Thread Balder
We also took a look at your PDF and when looking at the form, we noticed there are no fields attached to the submit button of the form. (We used Rups for that ) I advise to read Chapter 9 of "iText in Action - Second Edition". Kind Regards Balder ( & Emiel a co-worker) On 8/04/2011 14:33,

Re: [iText-questions] PDF Forms on Google App Engine

2011-04-08 Thread 1T3XT BVBA
Op 8/04/2011 14:33, Nitin Tomer schreef: > I printed a statement at the beginning of processRequest and then > submitted the form and that statement wasn't printed. But the servlet > was called, as I was able to check from Google App Engine's logs. > > Do you need to specify something specific in

Re: [iText-questions] PDF Forms on Google App Engine

2011-04-08 Thread Balder
On 8/04/2011 14:33, Nitin Tomer wrote: Hi Balder, Thanks for your reply. I printed a statement at the beginning of processRequest and then submitted the form and that statement wasn't printed. But the servlet was called, as I was able to check from Google App Engine's logs. Do you need to

Re: [iText-questions] PDF Forms on Google App Engine

2011-04-08 Thread Nitin Tomer
Hi Balder, Thanks for your reply. I printed a statement at the beginning of processRequest and then submitted the form and that statement wasn't printed. But the servlet was called, as I was able to check from Google App Engine's logs. Do you need to specify something specific in the Form's

Re: [iText-questions] PDF Forms on Google App Engine

2011-04-08 Thread 1T3XT BVBA
Op 8/04/2011 13:29, Nitin Tomer schreef: > On Fri, 08 Apr 2011 13:13:11 +0200, 1T3XT BVBA wrote: > Thanks for your reply. > > OK, I got it. But in that case, how can I display the confirmation > message on Acrobat Reader - something like "Your form has been submitted > and action will be

Re: [iText-questions] PDF Forms on Google App Engine

2011-04-08 Thread Balder
On 8/04/2011 13:29, Nitin Tomer wrote: On Fri, 08 Apr 2011 13:13:11 +0200, 1T3XT BVBA wrote: Thanks for your reply. OK, I got it. But in that case, how can I display the confirmation message on Acrobat Reader - something like "Your form has been submitted and action will be taken soon

Re: [iText-questions] PDF Forms on Google App Engine

2011-04-08 Thread Nitin Tomer
On Fri, 08 Apr 2011 13:13:11 +0200, 1T3XT BVBA wrote: Thanks for your reply. OK, I got it. But in that case, how can I display the confirmation message on Acrobat Reader - something like "Your form has been submitted and action will be taken soon."? And any pointers on why I am not able

Re: [iText-questions] PDF Forms on Google App Engine

2011-04-08 Thread 1T3XT BVBA
Op 8/04/2011 13:03, ntomer schreef: > When I submit the form, I get this message - "An error occured during the > submit process. Cannot process content of type text/html;charset=utf-8." You are submitting a form from the standalone PDF Viewer (e.g. Adobe Reader), and you're sending HTML to that v

Re: [iText-questions] PDF Forms

2008-05-15 Thread 1T3XT info
Michael Marcavage wrote: > > Is there a was, given any PDF Form, to get a list of fields via code? > Meaing, If I ran some code, that code would go to any PDF Form that I > tell it and return to me a list of all the fields on the PDF Form. > > I am trying to intregrate a given PDF form into a Lot

Re: [iText-questions] PDF Forms

2008-05-15 Thread Howard Shank
Put a little effort into your searching and you'll find the result in the FAQ and iText Examples, etc. http://itext.ugent.be/library/question.php?id=31 Howard Shank - Original Message From: Michael Marcavage <[EMAIL PROTECTED]> To: itext-questions@lists.sourceforge.net Sent: Thursday,

Re: [iText-questions] PDF forms and low bandwith

2008-04-16 Thread Paulo Soares
If you chose an external font, the font will be embedded. Use Helvetica instead of Arial. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of External MACKE Jonathan (CAMPUS) > Sent: Wednesday, April 16, 2008 10:59 AM > To: itext-questions@li

Re: [iText-questions] [PDF Forms] Placeholder Value "N" in Empty Fields

2008-02-05 Thread Sean Mills
This was an error on my part, but in my code I did stumble across another problem. I'm a little confused about the String.split function. For example, consider the following code: fruits = apple~banana~orange~~~ fruitsArray = fruits.split("~") Apparently, trailing empty strings are discarded,

Re: [iText-questions] [PDF Forms] Placeholder Value "N" in Empty Fields

2008-02-05 Thread 1T3XT info
Sean Mills wrote: > Hello, > > I'm trying to take data from a FileMaker database and populate a PDF > form, and everything is working well, except when I try to set fields > that have empty values. An "N" placeholder character is inserted, and > I don't know what that means. I'm not sure wh

Re: [iText-questions] PDF Forms

2007-03-28 Thread Paulo Soares
See http://itext.ugent.be/library/question.php?id=43. Paulo > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Dewey, Jeff > Sent: Wednesday, March 28, 2007 4:11 PM > To: itext-questions@lists.sourceforge.net > Cc: Dewey, Jeff > Subject: [iText-qu

Re: [iText-questions] PDF forms created with Acrobat 6.0

2007-02-22 Thread Nitin Tomer
data as FDF? Or do I need to do something else? Regards Nitin - Original Message - From: "Bruno Lowagie (iText)" <[EMAIL PROTECTED]> To: "Post all your questions about iText here" Sent: Thursday, February 22, 2007 7:25 PM Subject: Re: [iText-questions] PDF

Re: [iText-questions] PDF forms created with Acrobat 6.0

2007-02-22 Thread Bruno Lowagie (iText)
Nitin Tomer wrote: > So I want to ask whether iText 2.0 supports Acrobat 8.0 PDF forms? Yes, iText 2.0 supports AcroForms. It even supports XFA Forms. Do you know the difference between an AcroForm and an XFA form. Because that may be the cause of your problem/confusion. > And if it does,

Re: [iText-questions] pdf forms submit action field

2004-08-16 Thread Paulo Soares
You can't add content with PdfCopy use a regular PdfWriter. Best Regards, Paulo Soares - Original Message - From: <[EMAIL PROTECTED]> To: Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, August 16, 2004 1:52 Subject: Re: [iText-questions] pdf forms subm

Re: [iText-questions] pdf forms submit action field

2004-08-15 Thread [EMAIL PROTECTED]
I don't need stamper until after it is submitted and then I do not want the submit field present. I want to load a page from a reader( FileInputStream ) then add the page to a writer, and add sthe submit field. Every time I try this I seem to be on the wrong page. PdfCopy writer_p= new PdfCop

Re: [iText-questions] pdf forms submit action field

2004-08-15 Thread Paulo Soares
Form elements can only be added to a new document with PdfWriter. It's an important missing feature in PdfStamper but it will take some time to be implemented. Best Regards, Paulo Soares - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 15, 2004

RE: [iText-questions] PDF Forms

2004-05-24 Thread Paulo Soares
The fields are always absolute to the page. If you want them relative to something you'll have to do the maths.   Best Regards, Paulo Soares From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Trevor LintonSent: Monday, May 24, 2004 1:59 AMTo: [EMAIL PROTECTED]Su

RE: [iText-questions] PDF forms

2004-03-31 Thread Paulo Soares
You can do it with PdfStamper and AcroFields.   Best Regards, Paulo Soares From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nitin TomerSent: Wednesday, March 31, 2004 3:24 PMTo: [EMAIL PROTECTED]Subject: [iText-questions] PDF forms Hi,           Is

Re: [iText-questions] pdf forms - itext newbie

2004-01-31 Thread Paulo Soares
Use PdfStamper.getAcroFields() to fill the fields. Best Regards, Paulo Soares - Original Message - From: "webguy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 29, 2004 16:30 Subject: [iText-questions] pdf forms - itext newbie > Hi, > iText newbie for about 20 minu

RE: [iText-questions] PDF Forms Support

2003-03-24 Thread Paulo Soares
Check the last version. It does form filling, flattening, fdf merging, etc. Form creation already existed although it's a lot better now for text fields. Best Regards, Paulo Soares > -Original Message- > From: Percy M. Wegmann [SMTP:[EMAIL PROTECTED] > Sent: Monday, March 24, 2003 6:53 >