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

Animation.open

configuration

The animation played when the suggestion popup is opened.

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

The duration of the open animation in milliseconds.

Default: 200

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
    dataSource: ["Apple", "Orange", "Banana"],
    animation: {
        open: {
            duration: 800
        }
    }
});
</script>

The effect(s) to use when playing the open 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: {
        open: {
            effects: "fadeIn"
        }
    }
});
</script>