ai.aiAssistantWindow.autoFocusBoolean
(default: true)
Determines whether the AI AssistantWindow will be focused automatically when opened.
Example - disable AI AssistantWindow auto focus
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
aiAssistantWindow: {
autoFocus: false
},
service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
}
});
</script>
In this article