readonly Boolean(default: false)

If set to true, the Switch will render into its read-only state.

Example

<input id="switch" />

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