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

Animation.close

configuration

The animation that is applied when the popup is closing.

<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
  dataSource: ["One", "Two"],
  animation: {
   close: {
     effects: "zoom:out",
     duration: 300
   }
  }
});
</script>

The duration of the close animation in milliseconds.

Default: 100

<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
    dataSource: ["Red", "Blue", "Green"],
    animation: {
        close: {
            duration: 500
        }
    }
});
</script>

The effect(s) to use when playing the close animation. Multiple effects should be separated with a space.

Complete list of available animations

<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
    dataSource: ["Option 1", "Option 2", "Option 3"],
    animation: {
        close: {
            effects: "zoomOut"
        }
    }
});
</script>