Autopopulated form not displaying data in pdfunless the form field is clicked

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default Autopopulated form not displaying data in pdfunless the form field is clicked

    Within my online application, I have a pdf form that is auto generated and displayed to the user in the browser. My problem is that the populated form fields display as blank - however if you click in the blank field the data does in fact display. It will display only one field at a time.

    I do have the properties on each form field set to visible in the pdf. his form fields were created using Adobe Acrobat professional 8.

    I have mulitple reports that are written this way generated using Adobe Acrobat 5 without problem. (java served on tomcat)
    shannon_coleman@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Send data to form field
      Hi, I want to have a button, that when clicked goes to a .htm or .asp page with a form in it, populating one of the form fields. ie. the visitor...
    2. Insert data from form field to php page
      I am a brand new to php \ mysql (one+ week :)). I created a php form in drmwvr, with the contents being deposited into a mysql db. That part works...
    3. copy and paste form RTF document into field in asp form cause it to bypass field length and javascript validation - how to overcome?
      I have a web form with several fields. If I copy & paste from a RTF document into a field, the javascript validation and field length are bypassed...
    4. Acrobat 5.0 Calculating form field data
      I created a spreadsheet adding rows and columns and I get an error message "f has no properties" when I enter data.
    5. Form creation where I can duplicate data from one field to the next
      I need to be able to have the content of a memo field in one record be able to automatically populate the same field in other records. I then need...
  3. #2

    Default Re: Autopopulated form not displaying data inpdf unless the form field is clicked

    You don't mention ANYTHING about the technology/software/solution you have employed on the server to fill in the fields - but given what you've written I'll take a wild guess.

    Whatever you are using on the server is NOT anywhere current on the PDF file format and isn't properly writing the necessary "form appearances" when it fills the fields _OR_ sets the necessary "needs appearances generated for me on the client" flag.
    Leonard_Rosenthol@adobeforums.com Guest

  4. #3

    Default Re: Autopopulated form not displaying data inpdf unless the form field is clicked

    I am using the etymon pj.jar as the java class library to populate the pdf document.

    Development enviornment:
    Java 1.5
    pj.jar v1.3.4
    Adobe Acrobat Professional v8
    Deployment in Apache Tomcat 6.0

    The java code looks like this when populating one field:

    Hashtable<PjName, PjString> ht = fieldsHt.get("s1_other").getHashtable();
    ht.put(new PjName("T"), new PjString("s1_other" + "_" + i));
    PjDictionary newDict = new PjDictionary(ht);
    pdf.updateFieldValue(fieldsHt.get("s1_other"), newDict, "X");
    shannon_coleman@adobeforums.com Guest

  5. #4

    Default Re: Autopopulated form not displaying data inpdf unless the form field is clicked

    Then you should check with their tech support since we can't help you with that product on the ADOBE forums...

    And I HOPE that Acrobat isn't installed on the server...
    Leonard_Rosenthol@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139