ai.aiAssistantWindow.animation.openObject
The animation that will be used when the AI AssistantWindow opens.
Example - configure AI AssistantWindow opening animation
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
aiAssistantWindow: {
animation: {
open: {
effects: "fade:in",
duration: 200
}
}
},
service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
}
});
</script>
In this article