animation.open Object

The animation played when the suggestion popup is opened.

Example - configure the open animation

<input id="dropdowntree"/>

<script>
$("#dropdowntree").kendoDropDownTree({
  dataSource: [{ text: "item1", value: 1 }, { text: "item2", value: 2 }],
  animation: {
   open: {
     effects: "zoom:in",
     duration: 300
   }
  }
});
</script>
In this article