<kendo:checkBox>

A JSP wrapper for Kendo UI CheckBox.

Configuration Attributes

checked boolean

The checked state of the CheckBox.

Example

<kendo:checkBox checked="checked">
</kendo:checkBox>

enabled boolean

If set to false, the CheckBox will be disabled and will not allow the user to change its checked state.

Example

<kendo:checkBox enabled="enabled">
</kendo:checkBox>

encoded boolean

Determines whether the checkbox label content should be rendered as an HTML string or it should be encoded.

Example

<kendo:checkBox encoded="encoded">
</kendo:checkBox>

label java.lang.String

Specifies the label content for the checkbox.

Example

<kendo:checkBox label="label">
</kendo:checkBox>

rounded java.lang.String

Sets a value controlling the border radius.

Example

<kendo:checkBox rounded="rounded">
</kendo:checkBox>

size java.lang.String

Sets a value controlling the size of the component.

Example

<kendo:checkBox size="size">
</kendo:checkBox>

Event Attributes

change String

Fires when the checked state of the CheckBox is changed through user interaction.

For additional information check the change event documentation.

Example

<kendo:checkBox change="handle_change">
</kendo:checkBox>
<script>
    function handle_change(e) {
        // Code to handle the change event.
    }
</script>

Event Tags

kendo:checkBox-change

Fires when the checked state of the CheckBox is changed through user interaction.

For additional information check the change event documentation.

Example

<kendo:checkBox>
    <kendo:checkBox-change>
        <script>
            function(e) {
                // Code to handle the change event.
            }
        </script>
    </kendo:checkBox-change>
</kendo:checkBox>
In this article
Not finding the help you need?