Hello everyone. I have a problem that I need your help with. I have a yes/no radio button group that will present a subform (from its hidden state) when answered with a no response. The problem is that when the subform appears, the add an instance button (part of the subform) does not work as designed (using Action Builder); meaning when I click on "add", nothing happens. I have the repeat subform (subform/binding tab) set properly and the form set for Hide (exclude from layout) in the subform palette. I also have the following script in the radio button group...
OrderAddrSF.presense = "hidden";
if (this.rawValue == "2"); {
OrderAddrSF.presence = "visible";
}
Please help where you can.