ai.aiAssistantWindow.title.textString
default: "AI Assistant"
The text in the title bar of the AI AssistantWindow.
Example - configure AI AssistantWindow title text
<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>
In this article