ai.aiAssistantWindow.maxWidthNumber
(default: Infinity)
The maximum width (in pixels) that may be achieved by resizing the AI AssistantWindow.
Example - set AI AssistantWindow maximum width
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
aiAssistantWindow: {
maxWidth: 800,
resizable: true
},
service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
}
});
</script>
In this article