promptTextAreaObject
Configuration options for the Kendo UI TextArea component used in the prompt view. Only specific properties from the Kendo UI TextArea are supported.
Example
<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
promptTextArea: {
resize: "vertical",
rows: 4,
placeholder: "Enter your AI prompt here...",
fillMode: "outline",
rounded: "medium",
size: "large",
maxLength: 1000,
label: {
content: "AI Prompt",
floating: true
}
}
});
</script>
In this article