steps

Returns the Step Array configured in the Stepper. If used with an Array parameter, alters the steps in the widget according to the passed configuration of the steps.

Parameters

steps Array optional

Array of steps to be rendered in the Stepper.

Returns Array

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

Example

<nav id="stepper" style="height:400px"></nav>

<script>
    var stepper = $("#stepper").kendoStepper({
        steps: [{
            label: "Initial step"
        }, {
            label: "Second step"
        },{
            label: "Third step"
        }]
    }).getKendoStepper();

    stepper.steps([{
        label: "Reset 1"
    },{
        label: "Reset 2",
        selected: true
    }]);
</script>
In this article