setOptions
Modifies the initial configuration of the Stepper widget.
Parameters
options Object
The new Stepper options.
Example
<nav id="stepper" style="height:400px"></nav>
<script>
var stepper = $("#stepper").kendoStepper({
steps: [{
label: "Initial step"
}, {
label: "Second step"
},{
label: "Third step"
}]
}).getKendoStepper();
stepper.setOptions({
orientation: "vertical",
steps: [{
label: "Reset 1"
},{
label: "Reset 2",
selected: true
}]
});
</script>