checked Boolean(default: false)

The checked state of the CheckBox.

Example

<input id="checkbox" />

<script>
    $("#checkbox").kendoCheckBox({
        checked: true
    });
</script>
In this article