How do I redirect to a specific URL with JavaScript upon submit in Adobe LiveCycle?
I already have the code in place where the submit event is handled, and just need the specific code to do the redirect.
Standard asp.net-style redirects such as
windows.location.replace(http://myURL.com);
do not work.
Any help would be appreciated.
Solved! Go to Solution.
Views
Replies
Total Likes
To be able to redirect a website with a submit button, you must have a custom submit button and insert the following line:
app.launchURL("www.url.com");
Views
Replies
Total Likes
To be able to redirect a website with a submit button, you must have a custom submit button and insert the following line:
app.launchURL("www.url.com");
Views
Replies
Total Likes
This works!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies