select
Selects a Step that is present at a given index. If used without parameter returns the currently selected Step
instance.
Parameters
index Number
optional
The index of the Step which should be selected.
Returns kendo.stepper.Step
Step
The currently selected Step
instance.
Example
<nav id="stepper"></nav>
<script>
var stepper = $("#stepper").kendoStepper({
steps: [{
label: "Initial step"
}, {
label: "Second step"
},{
label: "Third step"
}]
}).getKendoStepper();
stepper.select(1);
</script>
In this article