smartPasteObject
Configures the SmartPasteButton integration for AI-powered form filling. When enabled, adds a SmartPasteButton that can intelligently parse clipboard content and distribute it to appropriate form fields using AI processing.
Example - Enable SmartPaste with AI service
<form id="myForm"></form>
<script>
$("#myForm").kendoForm({
formData: {
firstName: "",
lastName: "",
email: "",
phone: ""
},
smartPaste: {
service: {
url: "https://your-ai-service.com/api/smart-paste",
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
});
</script>