You can run the following inline javascript snippets from pagetitle component buttons anywhere within a wizard to navigate with javascript.
Let me know if there’s a more elegant way to accomplish this!
//Next Step<br>var button = arguments[0].button, <br>$ = skuid.$;<br>var wizard = $(button).closest('.nx-wizard').data('object'),<br>currentStep = wizard.steps[wizard.currentstep],<br>stepKeys = Object.keys(wizard.steps),<br>currentIndex = stepKeys.indexOf(wizard.currentstep);<br>if (stepKeys[currentIndex + 1]) {<br>currentStep.navigate(stepKeys[currentIndex + 1]);<br>}
//Previous Step
var button = arguments[0].button,
$ = skuid.$;
var wizard = $(button).closest('.nx-wizard').data('object'),
currentStep = wizard.steps[wizard.currentstep],
stepKeys = Object.keys(wizard.steps),
currentIndex = stepKeys.indexOf(wizard.currentstep);
if (stepKeys[currentIndex - 1]) {
currentStep.navigate(stepKeys[currentIndex - 1]);
}




