Skip to main content
Participant
January 10, 2025
Answered

Text Not Disappearing Once Checkboxes Are Checked

  • January 10, 2025
  • 1 reply
  • 435 views

I'll start off with I'm using Designer....

 

I have 5 check boxes that must be checked on a form. I have added the text "Please verify that all required boxes are checked" at the top of the section and I need it go hide once all 5 boxes are checked. 

 

This is the formula I'm using: 

 

if (this.resolveNode("ICAreconciled.checkbox5").rawValue == "1" && this.resolveNode("ICAvalidation.checkbox4").rawValue == "1" && this.resolveNode("checkbox3").rawValue == "1" && this.rawValue == "1" && this.resolveNode("checkbox2").rawValue == "1") {
this.resolveNode("B\.ChecklistTitle.VerifyMessage").presence = "hidden";
}
else
{
this.resolveNode("B\.ChecklistTitle.VerifyMessage").presence = "visible"
}

 

Am I missing something? I've attached the form if it helps. 

 

Thanks! 

Correct answer PDF Automation Station

This is an Acrobat forum and your form is an XFA form.

1 reply

PDF Automation Station
Community Expert
Community Expert
January 10, 2025

This is an Acrobat forum and your form is an XFA form.

Participant
January 10, 2025

I know... I was directed by the AEM forum to post here. >.< 

 

This happens every time. 😞 

 

Thank you for your response. 🙂