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