animation.open Object

The animation played when the suggestion popup is opened.

Example - configure the open animation

<input id="multicolumncombobox" />
<script>
$("#multicolumncombobox").kendoMultiColumnComboBox({
  animation: {
   open: {
     effects: "zoom:in",
     duration: 300
   }
  },
  dataTextField: "text",
  dataValueField: "value",
  dataSource: [
      { text: "Apples", value: "1" },
      { text: "Oranges", value: "2" }
  ],
  columns: [
      { field: "text", title: "Text" },
      { field: "value", title: "Value" }
  ]
});
</script>
In this article