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