insertAt

Inserts a new Step at a given index.

Parameters

index Number

The index at which the Step should be inserted.

step Object

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

Example

<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>
In this article