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

RemoveAt

methods

Removes a Step that is present at a given index.

Parameters:indexNumber

The index of the Step that should be removed.

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

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

	stepper.removeAt(1);
</script>
Not finding the help you need?
Contact Support