animation.close.effectsString
The effect(s) to use when playing the close animation. Multiple effects should be separated with a space.
Complete list of available animations
Example
<input id="dropdowntree" />
<script>
$("#dropdowntree").kendoDropDownTree({
dataSource: [
{ text: "Item 1", value: 1 },
{ text: "Item 2", value: 2 }
],
animation: {
close: {
effects: "zoomOut"
}
}
});
</script>
In this article