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

InsertAt

methods

Inserts a new Step at a given index.

Parameters:indexNumber

The index at which the Step should be inserted.

stepObject

A Step configuration object to be inserted at the specified index.

<nav id="stepper"></nav>

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

	stepper.insertAt(1, {
        label: "Inserted"
    });
</script>
Not finding the help you need?
Contact Support