fillModeString(default: "solid")
Sets a value controlling the way the color is applied to the SmartPasteButton. Valid values are "solid", "outline", "flat", and "link".
Example
<form id="form">
<input name="firstName" />
<button id="smartPasteButton"></button>
</form>
<script>
$("#smartPasteButton").kendoSmartPasteButton({
fillMode: "outline",
service: {
url: "https://your-ai-service.com/api/parse"
}
});
</script>