enabled Boolean(default: true)

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

Example

<input id="switch" />

<script>
    $("#switch").kendoSwitch({
        enabled: false
    });
</script>
In this article