messages.checked String
(default: "On")
The label for the checked state of the Switch.
The
messages
property is applicable only for theDefault
andClassic
themes. All other themes, by design, do not showchecked
andunchecked
messages.
Example
<input id="switch" />
<script>
$("#switch").kendoSwitch({
messages: {
checked: "YES"
}
});
</script>