ai.aiAssistantWindow.resizableBoolean
(default: true)
Enables (true
) or disables (false
) the resizing of the AI AssistantWindow.
Example - disable AI AssistantWindow resizing
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
aiAssistantWindow: {
resizable: false
},
service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
}
});
</script>
In this article