linear Boolean (default: true)

Indicates whether the Stepper will force the user to follow the Steps sequence or not. If set to "false" it will allow the user to select any step. If in its default state ("true") the user will be able to select the step immediately after the currently selected step or the previous step.

Example

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

<script>
    $("#stepper").kendoStepper({
        linear: false,
        steps: ["Initial step", "Second step", "Third step"]
    });
</script>
In this article