2014 May 12 2:50 PM
Dear Experts,
How can we write a Java script like when a button clicked on page1 it should go to page2 in sap adobe interactive forms in offline or online mode.
is this possible.
Regards,
Kartheek.
2014 May 12 3:10 PM
Hello
make javascript code like this for the button :
xfa.host.currentPage = 1; // Go to page 2 (0-based).
Regards
2014 May 12 3:10 PM
Hello
make javascript code like this for the button :
xfa.host.currentPage = 1; // Go to page 2 (0-based).
Regards
2014 May 13 6:51 AM
Thanks a lot Hicham Ka,
Its working, can we also work it to go to a particular line on page 2.
Regards,
Kartheek.
2014 Jun 27 10:01 AM
You can use this to focus on a particular field on a particular page.
xfa.host.setFocus( Page1.TextField5 );