messages.checkedString(default: "On")
The label for the checked 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: {
checked: "YES"
}
});
</script>
In this article