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

checkbox auto-populate

Participant ,
Jan 04, 2019 Jan 04, 2019

Copy link to clipboard

Copied

I thought I did this before but not sure. When you check a checkbox, I want a dropdown to populate with a specific choice

TOPICS
PDF forms

Views

402

Translate

Translate

Report

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 04, 2019 Jan 04, 2019

Copy link to clipboard

Copied

LATEST

As the Mouse Up event of the check-box you can use this code to do it:

if (event.target.value!="Off") this.getField("Dropdown1").value = "Some value";

View solution in original post

Votes

Translate

Translate

Report

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 04, 2019 Jan 04, 2019

Copy link to clipboard

Copied

LATEST

As the Mouse Up event of the check-box you can use this code to do it:

if (event.target.value!="Off") this.getField("Dropdown1").value = "Some value";

Votes

Translate

Translate

Report

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