ai.aiAssistantWindow.title.encodedBoolean
default: true
Specifies whether the title text will be encoded.
Example - disable AI AssistantWindow title encoding
<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>
In this article