toggle

Toggles the checked state of the CheckBox.

Example

<input id="checkbox" />
<button id="toggle">Toggle</button>

<script>
    $("#checkbox").kendoCheckBox()

    $("#toggle").on("click", function () {
        var checkboxInstance = $("#checkbox").data("kendoCheckBox");
        // toggle the checked state of the checkbox.
        checkboxInstance.toggle();
    });
</script>
In this article