messages.uncheckedString(default: "Off")
The label for the unchecked state of the Switch.
The
messagesproperty is applicable only for theDefaultandClassicthemes. All other themes, by design, do not showcheckedanduncheckedmessages.
Example
<input id="switch" />
<script>
$("#switch").kendoSwitch({
messages: {
unchecked: "NO"
}
});
</script>
In this article