promptTextArea.maxRowsNumber
(default: null)
Specifies the maximum number of visible rows to which the textarea can auto-resize. Used in combination with resize: "auto"
.
Example
<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
promptTextArea: {
resize: "auto",
maxRows: 3
}
});
</script>
In this article