enableBoolean(default: true)
Specifies whether the SmartPasteButton widget will be enabled or disabled.
Example
<form id="form">
<input name="firstName" />
<input name="lastName" />
<button id="smartPasteButton"></button>
</form>
<script>
$("#smartPasteButton").kendoSmartPasteButton({
enable: false,
service: {
url: "https://your-ai-service.com/api/parse"
}
});
</script>