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

Animation

configuration

Configures the opening and closing animations of the suggestion popup. Setting the animation option to false will disable the opening and closing animations. As a result the suggestion popup will open and close instantly.

animation:true is not a valid configuration.

animation

Boolean|Object
<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  animation: false
});
</script>
<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  animation: {
   close: {
     effects: "fadeOut zoom:out",
     duration: 300
   },
   open: {
     effects: "fadeIn zoom:in",
     duration: 300
   }
  }
});
</script>

The animation played when the suggestion popup is closed.

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

The animation played when the suggestion popup is opened.

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