textString(default: null)
Specifies the text displayed on the button. If not set, the button will display only an icon.
Example
<form id="form">
<input name="firstName" />
<button id="smartPasteButton"></button>
</form>
<script>
$("#smartPasteButton").kendoSmartPasteButton({
text: "Smart Paste",
service: {
url: "https://your-ai-service.com/api/parse"
}
});
</script>