ai.aiAssistantWindow.modalBoolean|Object
(default: false)
Specifies whether the AI AssistantWindow will display a modal overlay over the page.
Example - make AI AssistantWindow modal
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
aiAssistantWindow: {
modal: true
},
service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
}
});
</script>
In this article