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

Mark as read-only without digital signature

New Here ,
Oct 27, 2016 Oct 27, 2016

Hello,

I know you can mark fields in a form as read-only with the digital signature properties. 

Now i have a form where i must mark some fields as read-only, but i don't want to use the digital signature for that.

Is it possible to mark fields in a form as read-only without using the digital signature. Maybe a button?

Kind regards,

Jarno

TOPICS
Acrobat SDK and JavaScript , Windows
944
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
Community Expert ,
Oct 27, 2016 Oct 27, 2016

Tools > Prepare Form

In the properties of the fields you can check "Read Only".

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 ,
Oct 27, 2016 Oct 27, 2016

But then is it not possible to add some text to that field.

My form =>

Person A will add some text to the form and send it to person B.

Person B must sign the form. But i want that the information is read-only before sending to person B. (whitout a digital signature Person A). Is that possible?

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
Community Expert ,
Oct 27, 2016 Oct 27, 2016

Check "Read Only" after adding the text.

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 ,
Oct 27, 2016 Oct 27, 2016

Thanks Bernd.

Then is that a option

one problem, person A doesn't have Adobe Pro (only the reader).

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
Community Expert ,
Oct 27, 2016 Oct 27, 2016

You can also use JavaScript.

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 ,
Oct 27, 2016 Oct 27, 2016

I have found a javascript:

this.getField("FieldNameHere").readonly = true;

It works for 1 field. Now i will try to add more then one field to the script (don't know how at the moment )

But i will try

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 ,
Oct 27, 2016 Oct 27, 2016
LATEST

You can use a script like the following to set all fields in the document to read-only:

for (var i = 0; i < numFields; i += 1) {

    getField(getNthFieldName(i)).readonly = true;

}

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