check

Gets or sets the checked state of the CheckBox.

Parameters

check Boolean

Checks or unchecks the CheckBox.

Returns

Boolean - The checked state of the CheckBox.

Example

<input id="checkbox" />

<script>
    var checkboxInstance = $("#checkbox").kendoCheckBox().data("kendoCheckBox");
    checkboxInstance.check(true);
</script>
In this article