Redirect to the site home page on click of \Cancel\"/\"Save\" button?"


Badge +9

Is it possible to redirect to the home page on click of "Cancel"/"Save" button? JavaScript is not working on button clicks


4 replies

Badge +16

Hi please see these related threads:

https://community.nintex.com/message/39695

https://community.nintex.com/message/39719#comment-39719

Badge +9

Thanks Cassy,

I was able to achieve the functionality for the "Save" button by the form redirect url option. For "Cancel" buon I have added javascript

Badge +2

hi aditya,
how did you achieve via javascript to redirect page by clicking on Cancel button,
Could you share your code here

Badge +9

Yes,

  • Change  the "Button Type" to JavaScript in the button control setting
  • Then in the "Advanced" option of the button control I added  CancelRedirect() in "Client Click"
  • In the form settings custom javascript add

function CancelRedirect()

  {

  

   window.location.replace("<Pageurl>");

  }

Reply