New to Kendo UI for jQueryStart a free 30-day trial

Steps

methods

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.

Returns Array

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

<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>
Not finding the help you need?
Contact Support