cancelIconString(default: "x")
Specifies the icon displayed when the button is in listening/processing state.
Example
<form id="form">
<input name="firstName" />
<button id="smartPasteButton"></button>
</form>
<script>
$("#smartPasteButton").kendoSmartPasteButton({
cancelIcon: "stop",
service: {
url: "https://your-ai-service.com/api/parse"
}
});
</script>