Kendo.Mvc.UI.Fluent.CheckBoxBuilder
Defines the fluent API for configuring the Kendo UI CheckBox
Methods
Enable(System.Boolean)
If set to false, the CheckBox will be disabled and will not allow the user to change its checked state.
Parameters
value System.Boolean
The value for Enabled
Checked(System.Boolean)
The checked state of the CheckBox.
Parameters
value System.Boolean
The value for Checked
Checked
The checked state of the CheckBox.
Encoded(System.Boolean)
Determines whether the checkbox label content should be rendered as an HTML string or it should be encoded.
Parameters
value System.Boolean
The value for Encoded
Label(System.String)
Specifies the label content for the checkbox.
Parameters
value System.String
The value for Label
Size(Kendo.Mvc.UI.ComponentSize)
Sets a value controlling the size of the component.
Parameters
value Kendo.Mvc.UI.ComponentSize
The value for Size
Rounded(Kendo.Mvc.UI.BasicRounded)
Sets a value controlling the border radius.
Parameters
value Kendo.Mvc.UI.BasicRounded
The value for Rounded
Events(System.Action<Kendo.Mvc.UI.Fluent.CheckBoxEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.CheckBoxEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().CheckBox()
.Name("CheckBox")
.Events(events => events
.Change("onChange")
)
)