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

Problem with a check box form

New Here ,
Feb 21, 2018 Feb 21, 2018

Copy link to clipboard

Copied

Hi Guys

I have created a form with 20 check boxes  each check box is named vital signs 1-20 what I have managed to do is add up all the check boxes and display the answer as a percentage using the following:

var total = 0;

for (var i=1; i<=20; i++) {

if (this.getField("vital signs "+i).value!="Off") total++;}

event.value = total/20;

my problem is that if 2 particular check boxes (Vital signs 3 & Vital signs 6) if either is not ticked then the percentage total  needs to be 0% but if they are both ticked then the true percentage for all 20 check boxes needs to be displayed

also if the percentage is less then 80% the total box needs to be red

please can anyone help

TOPICS
Acrobat SDK and JavaScript , Windows

Views

311

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 , Feb 21, 2018 Feb 21, 2018

To handle special conditions, just add a conditional.

if((this.getField("vital signs 3").value=="Off") || (this.getField("vital signs 6").value=="Off"))

{

  event.value = 0;

}

else

{

   var total = 0;

   for (var i=1; i<=20; i++) {

         if (this.getField("vital signs "+i).value!="Off") total++;

    }

    event.value = total/20;

}

// this bit really belongs in a format event, but it works here in the calculation just fine.

event.target.strokeColor = (event.value<.8)?color.red:color.black;

Votes

Translate

Translate
Community Expert ,
Feb 21, 2018 Feb 21, 2018

Copy link to clipboard

Copied

To handle special conditions, just add a conditional.

if((this.getField("vital signs 3").value=="Off") || (this.getField("vital signs 6").value=="Off"))

{

  event.value = 0;

}

else

{

   var total = 0;

   for (var i=1; i<=20; i++) {

         if (this.getField("vital signs "+i).value!="Off") total++;

    }

    event.value = total/20;

}

// this bit really belongs in a format event, but it works here in the calculation just fine.

event.target.strokeColor = (event.value<.8)?color.red:color.black;

Thom Parker - Software Developer at PDFScripting
Use the Acrobat JavaScript Reference early and often

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 ,
Feb 21, 2018 Feb 21, 2018

Copy link to clipboard

Copied

LATEST

thanks Tom that works great I appreciate your help

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