ai.aiAssistantWindow.position.topNumber|String
Specifies the initial top position of the AI AssistantWindow. Numeric values are treated as pixels.
Example - configure AI AssistantWindow top position
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
service: "https://demos.telerik.com/service/v2/ai/grid/smart-state",
aiAssistantWindow: {
position: {
top: 100
}
}
}
});
</script>
In this article