New to Telerik UI for ASP.NET Core? Download free 30-day trial

Operation Modes

The Telerik UI for ASP.NET Core 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.

    @(Html.Kendo().Stepper()
        .Name("stepper")
        .Linear(false)
        .Steps(s =>
        {
            s.Add().Label("First Step");
            s.Add().Label("Second Step");
            s.Add().Label("Third Step");
        })
    )
    <kendo-stepper name="stepper" linear="false" >
        <steps>
            <step label="First"></step>
            <step label="Second"></step>
            <step label="Third"></step>
        </steps>
    </kendo-stepper>

See Also

In this article