Hello All,
Have been trying to crack this for the past 3 days and no luck:(
I have 4 checkboxes on page 1 and each checkbox represents the following:
Checkbox 1 = Page 2
Checkbox 2 = Page 3
Checkbox 3 = Page 4
Checkbox 4 = Page 5
When each checkbox is selected then the corresponding page should be visable. A user may select checkbox 1 and checkbox 4 to view pages 2 and 5.
I have found variations of this using fields and no go. I appreciate the help.
BG
if(radiobutton1.rawValue==1){page2.presence="visible";}else{page2.presence="hidden";}
this would apply for all buttons ( similar script depending upon object group name) eg.
if(radiobutton2.rawValue==1){page3.presence="visible";}else{page3.presence="hidden";} and so on.
Not sure if this helps in anyway. As long as your page is set up correctly it should work.