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

Animation.close

configuration

The animation played when the suggestion popup is closed.

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  animation: {
   close: {
     effects: "zoom:out",
     duration: 300
   }
  }
});
</script>

The duration of the close animation in milliseconds.

Default: 100

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
    dataSource: ["Apple", "Orange", "Banana"],
    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="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
    dataSource: ["Apple", "Orange", "Banana"],
    animation: {
        close: {
            effects: "zoomOut"
        }
    }
});
</script>