steps

Returns the Step Array configured in the Wizard.

Returns Array

Array[Step] The Step instances available in the Wizard widget.

Example

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

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

    var steps = wizard.steps();
</script>
In this article