ai.aiAssistantWindow.pinnedBoolean
(default: false)
Specifies whether the AI AssistantWindow will be pinned, that is, that it will not move together with the page content during scrolling.
Example - pin AI AssistantWindow
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
aiAssistantWindow: {
pinned: true,
position: { top: 100, left: 200 }
},
service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
}
});
</script>
In this article