Kendo.Mvc.UI.Fluent.WizardBuilder
Defines the fluent API for configuring the Kendo Wizard for ASP.NET MVC.
Methods
ActionBar(System.Boolean)
Indicates whether the Steps in the Wizard will render their Buttons and Pager element.
Parameters
value System.Boolean
The value that configures the 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 that configures the loadondemand.
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 action that configures the messages.
Pager(System.Boolean)
Indicates whether the Steps in the Wizard will render their Pager element.
Parameters
value System.Boolean
The value that configures the 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 that configures the 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 action that configures the stepper.
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.
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 action that configures the validateforms.
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 that configures the contentposition.
Tag(System.String)
Allow rendering of form element instead of the default div.
Parameters
tagName System.String
The tag that will be rendered as for the Wizard widget
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")
)
%>
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 action that configures the steps.