New to Kendo UI for jQueryStart a free 30-day trial

Animation.close

configuration

The animation that will be used when a Dialog closes.

<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  animation: {
    close: false
  }
});
</script>

Defines the close animation duration.

<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  animation: {
    close: {
      duration: 2000
    }
  }
});
</script>

Effect to be used for closing of the popup.

<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  animation: {
    close: {
      effects: "fade:out"
    }
  }
});
</script>