popupObject
The options that will be used for the popup initialization. For more details about the available options refer to Popup documentation.
Example
<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
popup: {
height: "500px",
width: "800px",
animation: {
close: {
effects: "fadeOut zoom:out",
duration: 300
},
open: {
effects: "fadeIn zoom:in",
duration: 300
}
}
}
})
</script>
In this article