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