messages.unchecked String(default: "Off")

The label for the unchecked state of the Switch.

Example

<input id="switch" />

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