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

The duration of the open animation in milliseconds.

Default: 200

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