Kendo.Mvc.UI.Fluent.SwitchBuilder
Defines the fluent API for configuring the Kendo UI Switch
Methods
Checked(System.Boolean)
The checked state of the Switch.
Parameters
value System.Boolean
The value for Checked
Checked
The checked state of the Switch.
Enabled(System.Boolean)
If set to false, the Switch will be disabled and will not allow the user to change its checked state.
Parameters
value System.Boolean
The value for Enabled
Readonly(System.Boolean)
If set to true, the Switch will render into its read-only state.
Parameters
value System.Boolean
The value for Readonly
Readonly
If set to true, the Switch will render into its read-only state.
Messages(System.Action<Kendo.Mvc.UI.Fluent.SwitchMessagesSettingsBuilder>)
Defines the text of the checked and unchecked labels that are displayed within the Switch. All labels support localization.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.SwitchMessagesSettingsBuilder>
The configurator for the messages setting.
Width(System.Double)
The width of the Switch.
Parameters
value System.Double
The value for Width
Size(Kendo.Mvc.UI.ComponentSize)
Sets the size of the component.
Parameters
value Kendo.Mvc.UI.ComponentSize
The value for Size
TrackRounded(Kendo.Mvc.UI.Rounded)
Sets a value controlling the track's border radius.
Parameters
value Kendo.Mvc.UI.Rounded
The value for TrackRounded
ThumbRounded(Kendo.Mvc.UI.Rounded)
Sets a value controlling the thumb's border radius.
Parameters
value Kendo.Mvc.UI.Rounded
The value for ThumbRounded
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")
)
)