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

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

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

    wizard.insertAt(1, {
        title: "Inserted"
    });
</script>
In this article