WizardMessagesSettingsBuilder

Methods

Done(System.String)

Specifies text to be rendered in the "Done" button on the final step.

Parameters

value - System.String

The value that configures the done.

Example

Razor
 
            @(Html.Kendo().Wizard()
               .Name("wizard")
               .Messages(messages => messages.Done("Completed"))
             )
             

Next(System.String)

Specifies text to be rendered in the "Next" button on each step.

Parameters

value - System.String

The value that configures the next.

Example

Razor
 
            @(Html.Kendo().Wizard()
               .Name("wizard")
               .Messages(messages => messages.Next("Following"))
             )
             

Of(System.String)

Specifies text to be rendered in the Pager element.

Parameters

value - System.String

The value that configures the of.

Example

Razor
 
            @(Html.Kendo().Wizard()
               .Name("wizard")
               .Messages(messages => messages.Of("Containing"))
             )
             

Previous(System.String)

Specifies text to be rendered in the "Previous" button on each step.

Parameters

value - System.String

The value that configures the previous.

Example

Razor
 
            @(Html.Kendo().Wizard()
               .Name("wizard")
               .Messages(messages => messages.Previous("Prior"))
             )
             

Reset(System.String)

Specifies text to be rendered in the "Reset" button on each step.

Parameters

value - System.String

The value that configures the reset.

Example

Razor
 
            @(Html.Kendo().Wizard()
               .Name("wizard")
               .Messages(messages => messages.Reset("Revert"))
             )
             

Step(System.String)

Specifies text to be rendered in the Pager element.

Parameters

value - System.String

The value that configures the step.

Example

Razor
 
            @(Html.Kendo().Wizard()
               .Name("wizard")
               .Messages(messages => messages.Step("Current"))
             )