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!
