smartPaste.serviceObject
The AI service configuration for processing clipboard content and generating intelligent field mappings.
Example
<form id="myForm"></form>
<script>
$("#myForm").kendoForm({
formData: {
firstName: "",
lastName: "",
email: ""
},
smartPaste: {
service: {
url: "https://api.example.com/parse",
headers: {
"Authorization": "Bearer token123",
"Content-Type": "application/json"
},
data: {
locale: "en-US"
}
}
}
});
</script>