ai.aiAssistant.promptTextArea.overflowString

Specifies the overflow behavior. Available options: "auto", "hidden", "visible", "scroll".

Example

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "productName" },
    { field: "category" }
  ],
  dataSource: [
    { productName: "Tea", category: "Beverages" },
    { productName: "Coffee", category: "Beverages" }
  ],
  ai: {
    aiAssistant: {
      promptTextArea: {
        overflow: "auto"
      }
    }
  }
});
</script>