messages.checked String(default: "On")

The label for the checked state of the Switch.

The messages property is applicable only for the Default and Classic themes. All other themes, by design, do not show checked and unchecked messages.

Example

<input id="switch" />

<script>
    $("#switch").kendoSwitch({
        messages: {
            checked: "YES"
        }
    });
</script>
In this article