RE: Navigating Web Form Dan Bt 4.Mar.03 03:23 PM a Web browser Domino Designer -- Forms 4.6.6aAll Platforms
Hi,
Thanks for your suggestion. I tried using the <Div>.
There seems to be some problem. Either the form shows up as blank or the button does not work
I have not used javascript too often and I have never used it in notes before. Therefore I might be making some mistake.
This is how I did it.
<script language = "javascript">
<DIV ID="Tab1">
<document.all.Tab1.style.visibility="visible">
<document.all.Tab2.style.visibility="hidden">
/* all the above are formatted as pass through html */
question 1 FIELD1
question 2 FIELD2
.
.
.
.
</Div>
BUTTON
document.all.Tab1.style.visibility="hidden";
document.all.Tab2.style.visibility="visible"
(the above is the text i have entered in the button under formula)