WizardStepperSettingsBuilder

Methods

Indicator(System.Boolean)

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

Parameters

value - System.Boolean

The value for Indicator

RETURNS

Returns the current WizardStepperSettingsBuilder instance.

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 for Label

RETURNS

Returns the current WizardStepperSettingsBuilder instance.

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 for Linear

RETURNS

Returns the current WizardStepperSettingsBuilder instance.

Example

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