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

Animation

configuration

A collection of {Animation} objects that is used to change the default animations. When set to false, all animations will be disabled.

animation:true is not a valid configuration.

animation

Boolean|Object
<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  animation: false
});
</script>

The animation that will be used when a Window closes.

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  animation: {
    close: false
  }
});
</script>

The animation that will be used when a Window opens.

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  animation: {
    open: false
  },
  visible: false
});
$("#dialog").data("kendoWindow").open();
</script>