Skip to main content
Nintex Community Menu Bar

Wizard navigate buttons on top and/or bottom of wizard

  • July 8, 2024
  • 4 replies
  • 15 views

Forum|alt.badge.img+18

We have a use case where long wizard pages would make it convenient to see the ‘navigate’ buttons on both the top and bottom of the wizard.

Alternatively, make the ‘navigate wizard step’ option available for pagetitle components placed within wizards.

This topic has been closed for replies.

4 replies

Forum|alt.badge.img+17
  • Nintex Employee
  • July 8, 2024

This idea has been proposed in several forms. 

In the mean time you can call the next step aciton in 3 lines of Javascript - which can be bound to a button anywhere on the page. 

var wizard = $(‘.nx-wizard’).data(‘object’); 
var currentStep = wizard.steps[wizard.currentstep];
currentStep.navigate(‘step2’);

I put that code on row actions in tables and lots of other places… Works well. 


Forum|alt.badge.img+18
  • Author
  • July 8, 2024

Nice. Thanks, Rob.


Forum|alt.badge.img+18
  • Author
  • July 8, 2024

Is there any way to generically navigate to the ‘next step’?


Forum|alt.badge.img+18
  • Author
  • July 8, 2024