Hello,I have a form where if the user checks box A, it will open a
section with a repeating subform. if the user clicks add, it will add a
new instance of the subform. if you then go back and uncheck box A, the
repeating subforms should disappear, however they are staying visible.In
the 'change' event of the check box I have the following
code:if(this.rawValue == "1"){subfrmRepeatingForm.presence =
"visible";subfrmRepeatingBtn.presence = "visible";} if (this.rawValue ==
"0"){subfrmRepeatingForm....