messages.smartPasteString(default: "Smart Paste")
The text message displayed for the SmartPasteButton when smart paste functionality is enabled.
Example - set the smart paste button message
<form id="myForm"></form>
<script>
$("#myForm").kendoForm({
formData: {
firstName: "",
lastName: ""
},
smartPaste: {
service: {
url: "https://api.example.com/parse"
}
},
messages: {
smartPaste: "AI Fill"
}
});
</script>