Nintex Live Redirect

  • 9 February 2015
  • 1 reply
  • 4 views

Badge +2

Hello,

 

I'm just wondering if forms that are published to Nintex Live can redirect instead of using the built in submitted/cancelled pre-canned wording? I added a re-direct to the form options and it works within the SharePoint site. If I go to fill out the form, but when I publish to Nintex Live, it no longer redirects? Is it assumed that people are going to iframe the Nintex Live form because that would mess up any bootstrap or responsive styling on the website since their is no redirect functionality.

 

Thank You,

Trevor Mitchell


1 reply

Badge +9

Hi Trevor,

Redirects in Nintex Live Forms can be added using a setTimeout() method. For example, you would add a delay for the redirect of your choosing:

**Just make sure to place this within <script> tags in the Edit Source of the Nintex Live Form Settings > Confirmation Message**

<script>

NWF$(document).ready(function(){

window.setTimeout(function() {

window.location="http://www.yourURLWouldGoHere.woot";

}, 1000);

});

</script>

Thank you,

Sean

Reply