Hello,
I have 12 checkboxes on page 1 of my form. There are 12 subforms (4 on each page for a total of 3 pages) which contain identifical tables of header row and Row1 in each subform. One subform for each checkbox. All are name similarly but with different names. Checkboxes are set to On=1 and Off=0.
The object is to have a checkbox display or hide a subform.
They work but only one page works at a time.For instance if I get page 3 working then pages 1 and 2 don't work and so forth.
Here's the script in the check box click event:
if (this.rawValue == '1')
{
table1.presence = "visible";
}
else if (this.rawValue == '0')
{
table1.presence = "hidden";
}
Any thoughts on what's happening?
Thanks,
MDawn