Search code examples
sapui5wizard

SAPUI5 Wizard: How do I skip a Step of the Wizard?


I m trying to dynamically skip a Step of the wizard. Means when onNext() a condition will be checked. If the step do not fulfill the condition, the step will be skiped. So the step will not be activated.

I dont know yet how to desactivate/activate a step, so that the step will still be on the wizard bar but the user will not go into.

Any suggestions please ?

Thanks


Solution

  • I do not know why this question got votes down. Anyway there is how I could solve the issue.

    wizard.getProgressStep().mProperties.validated = false;
    

    In the documention they didnt make mention of that property.