messages.unchecked String
(default: "Off")
The label for the unchecked 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: {
unchecked: "NO"
}
});
</script>