Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
At this moment a simple success text is displayed after submit.
Is it possible or is there a option to redirect to an other page within Umbraco?
Yes.
Refer to this code: http://www.formulate.rocks/render-form
You can see a JavaScript event that lets you do what you want on successful submissions. You could change it to something like this:
$scope.$on("Formulate.formSubmit.OK", function () { window.location = "/your-success-page"; });
Of course, that's just using a hard coded URL, but you could make that dynamic in whatever way you like.
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
How to redirect to custom success page
At this moment a simple success text is displayed after submit.
Is it possible or is there a option to redirect to an other page within Umbraco?
Yes.
Refer to this code: http://www.formulate.rocks/render-form
You can see a JavaScript event that lets you do what you want on successful submissions. You could change it to something like this:
Of course, that's just using a hard coded URL, but you could make that dynamic in whatever way you like.
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.