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

Conditional Calculation if Box is Checked

New Here ,
Sep 21, 2022 Sep 21, 2022

Copy link to clipboard

Copied

I'm using Adobe Acrobat Pro 2017.

I want the form to calculate an amount (bonus) if a specific box is checked. If the box isn't checked, then no calculation is required.

So far I have: event.value = this.getField("Salary").value * 25 / 100.0 which calculates the bonus (field called BonusTotal) as soon as a salary is entered, however, I don't want to see a bonus if the checkbox (called Bonus) is unchecked. What am I missing? Thank you!

 

TOPICS
Acrobat SDK and JavaScript

Views

269

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

correct answers 1 Correct answer

Community Expert , Sep 21, 2022 Sep 21, 2022

Before calculating check that checkbox is checked, something like this:

if(this.getField("Bonus").isBoxChecked(0))
event.value = this.getField("Salary").value * 25 / 100.0;
else
event.value = "";

Votes

Translate

Translate
Community Expert ,
Sep 21, 2022 Sep 21, 2022

Copy link to clipboard

Copied

Before calculating check that checkbox is checked, something like this:

if(this.getField("Bonus").isBoxChecked(0))
event.value = this.getField("Salary").value * 25 / 100.0;
else
event.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
New Here ,
Sep 22, 2022 Sep 22, 2022

Copy link to clipboard

Copied

LATEST

THANK YOU! I've searched for hours!

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