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

Disabling a Signature Field based on a check box being selected

Explorer ,
Jan 08, 2024 Jan 08, 2024

I have a PDF form where operators have to select a checkbox based on a desision. Then apply the signature next to the check box they have created. The application of the signature locks off fields further on in the form as required. 

 

GregGrowney_0-1704712315341.png

Is there any way I can make the apposing signature box unavailable based on the selection of the check box. For example, if 'FILL ON TOP' checkbox is selected, the signature field for 'NOT FILL ON TOP' becomes unavailable / locked?

 

Thanks 🙂

TOPICS
PDF forms
651
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
1 ACCEPTED SOLUTION
Community Expert ,
Jan 08, 2024 Jan 08, 2024

Try this as 'Mouse UP' action (Run a JavaScript) of checkbox:

this.getField("NOT FILL ON TOP").readonly = event.target.value == "Off" ? false : true;

View solution in original post

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 ,
Jan 08, 2024 Jan 08, 2024

Try this as 'Mouse UP' action (Run a JavaScript) of checkbox:

this.getField("NOT FILL ON TOP").readonly = event.target.value == "Off" ? false : 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
Explorer ,
Jan 08, 2024 Jan 08, 2024
LATEST

Worked a treat! Thank you so much!

 

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