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

Running a script to check box based on other fields. How do I set the box default to unchecked when fields are blank?

New Here ,
Nov 17, 2017 Nov 17, 2017

Copy link to clipboard

Copied

I have a script that checks a box when a person's age is within 10 years of another person. The script works fine, but the box is checked by default until the information is filled in. This confuses some people, so I'm trying to set the default to unchecked. Here is the script:

var fieldT = this.getField("Checkbox 1");

var x = this.getField("Age").valueAsString; 

age = event.value; 

if (Math.abs(Number(x)-Number(age))<=10){

fieldT.checkThisBox(0,true);

}

else

{

fieldT.checkThisBox(0,false);

}

I appreciate any and all assistance. Thanks!

TOPICS
PDF forms

Views

261

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 ,
Nov 17, 2017 Nov 17, 2017

Copy link to clipboard

Copied

Do you mean when the Age field is empty?

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
New Here ,
Nov 17, 2017 Nov 17, 2017

Copy link to clipboard

Copied

Yes, sorry for not clarifying.

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 ,
Nov 17, 2017 Nov 17, 2017

Copy link to clipboard

Copied

LATEST

Change this line:

if (Math.abs(Number(x)-Number(age))<=10){

To:

if (x!="" && Math.abs(Number(x)-Number(age))<=10){

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