Hello,
I would like a title bar, "Applicant Information (cont'd)" to appear on the second page of my form, but only if it detects that the subform on the first page is breaking and continuing onto the second page. Is there any way to do this with javascript? This is the pseudocode for what I need:
If (subform1 breaks onto second page) { MasterPage2.Titlebar1.presence = "visible"; } else { MasterPage2.Titlebar1.presence = "hidden"; }
Is it possible to reference a text box like that on one of the Master pages?