Operation Modes
The Stepper provides a set of modes that define the way the user will interact with the Stepper.
By default, the user has to follow the Steps sequence. This behavior could be customized by configuring the linear
configuration option. When set to false
the user will be able to select any step, irrespective of the Step sequence.
The following example demonstrates how to allow the user to navigate to any Step of the Stepper, irrespective of the Step sequence.
<nav id="stepper"></nav>
<script>
$(document).ready(function () {
$("#stepper").kendoStepper({
linear: false,
steps: [{
label: "First step"
},{
label: "Second step",
},{
label: "Third step",
}]
});
});
</script>