Kendo.Mvc.UI.Fluent.WizardBuilder
Defines the fluent API for configuring the Kendo UI Wizard
Methods
Steps(System.Action<Kendo.Mvc.UI.Fluent.WizardStepFactory>)
Array of steps to be rendered in the Wizard.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.WizardStepFactory>
The configurator for the steps setting.
Tag(System.String)
The tag that will be rendered. Defaults to "div". Could be test to "form" to act as a form element.
Parameters
value System.String
The value for Tag
ActionBar(System.Boolean)
Indicates whether the Steps in the Wizard will render their Buttons and Pager element.
Parameters
value System.Boolean
The value for ActionBar
LoadOnDemand(System.Boolean)
Indicates whether the step content will be loaded on demand when a given step is selected. Applicable when the step configuration has "contentUrl" set.
Parameters
value System.Boolean
The value for LoadOnDemand
LoadOnDemand
Indicates whether the step content will be loaded on demand when a given step is selected. Applicable when the step configuration has "contentUrl" set.
Messages(System.Action<Kendo.Mvc.UI.Fluent.WizardMessagesSettingsBuilder>)
Provides configuration options for the messages present in the Wizard widget.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.WizardMessagesSettingsBuilder>
The configurator for the messages setting.
Pager(System.Boolean)
Indicates whether the Steps in the Wizard will render their Pager element.
Parameters
value System.Boolean
The value for Pager
ReloadOnSelect(System.Boolean)
Indicates whether the step content will be reloaded on each navigation to given step. Applicable when the step configuration has "contentUrl" set.
Parameters
value System.Boolean
The value for ReloadOnSelect
Stepper(System.Action<Kendo.Mvc.UI.Fluent.WizardStepperSettingsBuilder>)
Provides configuration options for the Stepper instance of the Wizard widget.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.WizardStepperSettingsBuilder>
The configurator for the stepper setting.
ValidateForms(System.Action<Kendo.Mvc.UI.Fluent.WizardValidateFormsSettingsBuilder>)
Indicates whether the Wizard will automatically validate any Kendo Form configured for a Step. Validation will be executed upon Step navigation.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.WizardValidateFormsSettingsBuilder>
The configurator for the validateforms setting.
ValidateForms(System.Boolean)
Indicates whether the Wizard will automatically validate any Kendo Form configured for a Step. Validation will be executed upon Step navigation.
Parameters
enabled System.Boolean
Enables or disables the validateforms option.
ContentPosition(Kendo.Mvc.UI.WizardContentPosition)
The position of the Wizard step content according to the embedded Stepper widget.
Parameters
value Kendo.Mvc.UI.WizardContentPosition
The value for ContentPosition
Events(System.Action<Kendo.Mvc.UI.Fluent.WizardEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.WizardEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().Wizard()
.Name("Wizard")
.Events(events => events
.Activate("onActivate")
)
)