New to Kendo UI for jQueryStart a free 30-day trial

Ai.pane

configuration

Defines the configuration options for the Splitter Pane containing the side panel AI Prompt. This allows you to control the pane's size, minimum size, collapsibility, and collapsed state.

ai.pane

Object
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
  ai: {
    pane: {
      min: "370px",
      size: "370px",
      collapsible: true,
      collapsed: true
    }
  }
});
</script>

Sets the collapsed of the pane.

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
    ai: {
        pane: {
            collapsed: false
        }
    }
});
</script>

Enables the collapsibility of the pane.

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
    ai: {
        pane: {
            collapsible: true
        }
    }
});
</script>

Sets the minimum size of the pane.

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
    ai: {
        pane: {
            min: "200px"
        }
    }
});
</script>

Sets the size of the pane.

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
    ai: {
        pane: {
            size: "350px"
        }
    }
});
</script>