steps.enabled Boolean (default: true)

Specifies whether the step is enabled or not.

Example

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

<script>
    $("#wizard").kendoWizard({
        steps: [{
            title: "Initial step"
        }, {
            title: "Second step",
            enabled: false
        }]
    });
</script>
In this article