Kendo.Mvc.UI.Fluent.SwitchBuilder
Defines the fluent API for configuring the Kendo Switch for ASP.NET MVC.
Methods
Checked(System.Boolean)
The checked state of the widget.
Parameters
value System.Boolean
The value that configures the checked.
Enabled(System.Boolean)
Defines the text of the checked and unchecked labels that are shown within the Switch. All labels could be localized.
Parameters
value System.Boolean
The value that configures the enable.
ReadOnly(System.Boolean)
If set to true
the Kendo UI Switch will render into its read-only state.
Parameters
value System.Boolean
The value that configures the readonly.
Width(System.Object)
The width of the Kendo UI Switch.
Parameters
value System.Object
The value that configures the width.
Messages(System.Action<Kendo.Mvc.UI.SwitchMessagesSettingsBuilder>)
Defines the text of the checked and unchecked labels that are shown within the Switch. All labels could be localized.
Parameters
configurator System.Action<Kendo.Mvc.UI.SwitchMessagesSettingsBuilder>
The action that configures the messages.
Events(System.Action<Kendo.Mvc.UI.Fluent.SwitchEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.SwitchEventBuilder>
The client events action.
Example (ASPX)
<%= Html.Kendo().Switch()
.Name("Switch")
.Events(events => events
.Change("onChange")
)
%>