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

Adobe Acrobat Form Question

Explorer ,
Oct 20, 2020 Oct 20, 2020

In Adobe Acrobat, is there a way to make a pair of Yes/No checkboxes either appear or disappear based on a dropdown selection chosen?

TOPICS
Fill and sign
238
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 21, 2020 Oct 21, 2020
LATEST

Yes. You can use something like this as the custom validation script of the drop-down field:

this.getField("Checkbox1").display = (event.value=="Option1") ? display.visible : display.hidden;

 

PS. In the future, post questions about Acrobat here: https://community.adobe.com/t5/acrobat/bd-p/acrobat

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