enableStep

Enables or disables the step at the specified index.

Parameters

index Number

Specifies the index of the step to be enabled/disabled.

enable Boolean

Specifies whether the step should be enabled (true) or disabled (false).

Example

<div id="wizard"></div>

<script>
    var wizard = $("#wizard").kendoWizard({
        steps: [{
            title: "Initial step"
        },{
            title: "Second step"
        }]
    }).data("kendoWizard");

    wizard.enableStep(1, false);
</script>
In this article