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

The text in the title bar of the AI AssistantWindow. If set to false, the AI AssistantWindow will be displayed without a title bar.

ai.aiAssistantWindow.title

Object|String|Boolean

Default: "AI Assistant"

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

Specifies whether the title text will be encoded.

Default: true

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
   columns: [{ field: "name" }],
   dataSource: [{ name: "Jane Doe" }],
   toolbar: ["aiAssistant"],
   ai: {
     aiAssistantWindow: {
       title: {
         text: "<strong>AI Assistant</strong>",
         encoded: false
       }
     },
     service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
   }
});
</script>

The text in the title bar of the AI AssistantWindow.

Default: "AI Assistant"

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