Expand my Community achievements bar.

How do I add a link to go to another page of the same form

Avatar

Level 3
Hi,



How do I add a link (page #) to another page on the same form so that when the user clicks on the number it would jump to that specific page.



Thanks in advance.
2 Replies

Avatar

Level 10
Hi Nelson,



You could do this by having a regular button on the start page with the following Javascript in the click event:



xfa.host.setFocus(xfa.form.form1.p6.TextField1);



The TextField1 represents the first fields on page 6, which lets says is the page you want to link to.



You could set it up as a visible button for the user to click; or you could set the border and fill to none and place the button over some static text, telling the user to click here.



Good luck,



Niall

Avatar

Level 3
Oh ok, I was looking for some sort of link object built in without going into javascript, but I guess this will do for now too...



Thank you.