ai.aiAssistantWindow.resize
Triggered when the user resizes the AI Assistant Window.
Example - subscribing to the resize event
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
aiAssistantWindow: {
resize: () => console.log("AI Assistant Window resize!")
},
service: "https://demos.telerik.com/service/v2/ai/grid/smart-state",
}
});
</script>
In this article