You are viewing limited content. For full access, please sign in.

Question

Question

Redirect to website on approval in the Modern Designer?

asked on July 9, 2024 Show version history

I can't find anything in the documentation on this and the following code doesn't seem to work. I am hoping to redirect the approver after they make their decision:

LFForm.onFormSubmission(function () {
	 window.open("https://linkhere.com");
	});

 

0 0

Replies

replied on July 9, 2024

You wont be able to redirect the current form onFormSubmission because you need the submission to go through. If you use this code, you can open the link in a new tab allowing the user to close the current tab. It doesn't quite solve your problem 100% but it is probably the only way forward.

 

window.open("https://linkhere.com", "_blank");

1 0
replied on July 10, 2024

You can also setup a redirect on the Message Start Event - this would redirect to your specified webpage when the form is submitted.

on_completion.JPG
0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.