messages.clear String
(default: "Clear")
The text message displayed for the Form clear button.
Example - set the clear button message
<form id="myForm"></form>
<script>
$("#myForm").kendoForm({
orientation: "horizontal",
formData: {
ID: 1,
Name: "Ivan"
},
items: [{
field: "Name",
label: "Name:"
}],
messages: {
clear: "Custom Clear Button Text"
}
});
</script>