New to Kendo UI for jQueryStart a free 30-day trial

A collection of one or two members which define the initial top and/or left position of the AI AssistantWindow.

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
   columns: [{ field: "name" }],
   dataSource: [{ name: "Jane Doe" }],
   toolbar: ["aiAssistant"],
   ai: {
     aiAssistantWindow: {
       position: {
         top: 100,
         left: 150
       }
     },
     service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
   }
});
</script>

Specifies the initial left position of the AI AssistantWindow. Numeric values are treated as pixels.

<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: {
         left: 200
       }
     }
   }
});
</script>

Specifies the initial top position of the AI AssistantWindow. Numeric values are treated as pixels.

<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>