Wizard tabs clickable

Hello,

Is it possible to make the Wizard "tabs" clickable or exabit the same behavior as the "Next" button? I know they can be clicked once a user moves to the next stage in the wizard, but ideally they should be an alternative way of moving through the wizard. Thanks!

Hello @ParAvion,

You can activate all tabs using this code:

fd.container('Wizard1').widget.activateAll()

Thus a user can navigate to a step by clicking it's title.

Hi @mnikitina,

Thank you but the titles still aren't clickable to navigate to the next step. Was there anything else I needed to add aside from the code above? Thanks.

@ParAvion,

If you want to activate all steps on form load, add a code within the spRendered event like this:

fd.spRendered(function(){
    fd.container('Wizard1').widget.activateAll()
});

Make sure you are using valid control's name in the code.

1 Like