serviceObject(default: null)
The AI service configuration for processing pasted content.
Example
<form id="form">
<input name="firstName" />
<input name="lastName" />
<button id="smartPasteButton"></button>
</form>
<script>
$("#smartPasteButton").kendoSmartPasteButton({
service: {
url: "https://your-ai-service.com/api/parse",
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
}
});
</script>