Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

when I open my fillable form, none of the available fields are fillable.

New Here ,
Jul 12, 2016 Jul 12, 2016

I don't know what setting caused this. The form worked before but when I copied the master document to make a user document it lost the ability to fill the fields. They show but are white like the rest of the document, not colored for filling. No matter what I try, there is no way to enter data.  "Fill and Sign" should open with all of the fields showing as fillable, but they don't allow for data entry.

TOPICS
Acrobat SDK and JavaScript , Windows
696
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jul 13, 2016 Jul 13, 2016

Can you post a link to the form?

Are you reading the form with a viewer other than Acrobat or Adobe Reader?

If you are using a web browser, there are many web browsers that do not handle PDF form fields. The same applies to PDF readers on mobile devices.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 13, 2016 Jul 13, 2016

link to the pdf is: here

no viewer or browser is involved, I work in Acrobat DC, latest version.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jul 13, 2016 Jul 13, 2016

I am not aware of any OS that does not require a program to read a PDF. Acrobat is a PDF viewer as well as a PDF creator,

After downloading your example PDF and digital certificate, I see the PDF was created using MS Word.  When I used the "Tools => Prepare Form" to examine or create form fields, I see lots of form fields. When looking at the properties of a number of the form fields, I noticed all the examined fields were set to "Read Only", so users are locked form entering data into these fields. It is possible to change them using JavaScript. I also see a number of signature fields and using the Navigation panel it appears a number of these signatures have been applied. Applying a digital signature can lock all form fields.

If you want the fields to be user fillable you must remove the signatures from the form.

You can use the following script to remove the readonly condition from all of the form fields:

var oField

for(var i = 0; i < this.numFields; i++)

{

     oField = this.getField(this.getNthFieldName(i));

     oField.readonly = false;

     console.println(i + ": " + oField.name + " - read only: " + oField.readonly);

} // end field name loop;

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 13, 2016 Jul 13, 2016

Sorry, but I don't know how to apply the script you suggested.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 13, 2016 Jul 13, 2016

I removed the signatures, then selected all the fields, and globally reset properties to remove "locked" and "read only." Then I saved the file. The fields are back. From what I've seen, once a signature appears on the document everything becomes locked and read only. Correct?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Aug 08, 2016 Aug 08, 2016
LATEST

Yes, once a Signature is applied and the PDF is saved with that signature the fields become locked and read only.

Thanks,

Josh

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines