I have a form that has 3 drop down boxes with options 1,2 and 3 in them. I want to hide a button if "1" is selected for either of the 3 drop down boxes. But the problem is I want it to re appear if the user changes their mind and wants to select 2 or 3. So at no point and time do I want the button visible if "1" is selected. But I do want it visible if none of the boxes have "1".
Thanks in advance for taking the time to help.
if ($.boundItem(xfa.event.newText) == "1") {
this.resolveNode("Subform.YourButton").presence = "hidden";
}
else{
this.resolveNode("Subform.YourButton").presence = "visible";
}