Skip to main content
petes22959894
Participant
January 9, 2025
Answered

Checkbox total change colour if greater than & check another checkbox

  • January 9, 2025
  • 1 reply
  • 377 views

Hi All,

 

I have a textbox successfully calculating the total of checkboxes checked: 

var total = 0;
for (var i=1; i<=22; i++) {
if (this.getField("OC"+i).value!="Off") total++;
}
event.value = total;

I would like the text to turn red if the total value is greater than 11 and also check another checkbox if the value is greater than 10.

 

Can anybody help?

Correct answer try67

Add this to the end of the code:

event.target.textColor = (total>11) ? color.red : color.black;

this.getField("OtherCheckBoxNameGoesHere").checkThisBox(0, total>10);

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
January 9, 2025

Add this to the end of the code:

event.target.textColor = (total>11) ? color.red : color.black;

this.getField("OtherCheckBoxNameGoesHere").checkThisBox(0, total>10);

petes22959894
Participant
January 9, 2025

Thank you very much.