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="combobox" />
<script>
$("#combobox").kendoComboBox({
  animation: {
   close: {
     effects: "zoom:out",
     duration: 300
   }
  }
});
</script>

The duration of the close animation in milliseconds.

Default: 100

<input id="combobox" />
<script>
$("#combobox").kendoComboBox({
    animation: {
        close: {
            effects: "zoomOut",
            duration: 500
        }
    },
    dataSource: ["Item1", "Item2", "Item3"]
});
</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="combobox" />
<script>
$("#combobox").kendoComboBox({
    animation: {
        close: {
            effects: "zoomOut",
        }
    },
    dataSource: ["Item1", "Item2", "Item3"]
});
</script>