messages.checked String(default: "On")

The label for the checked state of the Switch.

Example

<input id="switch" />

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