WizardStepperSettingsBuilder

Methods

Indicator(System.Boolean)

Specifies whether the Stepper instance will display the indicators of its steps.

Parameters

value - System.Boolean

The value that configures the indicator.

Example

Razor
 
            @(Html.Kendo().Wizard()
               .Name("wizard")
               .Stepper(stepper => stepper.Indicator(true))
             )
             

Label(System.Boolean)

Specifies whether the Stepper instance will display the labels of its steps.

Parameters

value - System.Boolean

The value that configures the label.

Example

Razor
 
            @(Html.Kendo().Wizard()
               .Name("wizard")
               .Stepper(stepper => stepper.Label(true))
             )
             

Linear(System.Boolean)

Specifies whether the Stepper will allow non-linear navigation (selection of steps which are not immediately next to the current step).

Parameters

value - System.Boolean

The value that configures the linear.

Example

Razor
 
            @(Html.Kendo().Wizard()
               .Name("wizard")
               .Stepper(stepper => stepper.Linear(true))
             )