Hi,This depends on how you have done your show/hide code. If you were to
have a subform that contained a radio button list called YesNo, one
called ABC and a subform call aContent, then in the subform calculate
event you could have code like;if (YesNo.rawValue == 1) { ABC.presence =
"visible";} else { ABC.presence = "hidden";
xfa.host.resetData(ABC.somExpression);}if (ABC.rawValue == 1) {
aContent.presence = "visible";} else { aContent.presence = "hidden";}The
thing to note here is that when the...