animation.open.effectsString

The effect(s) to use when playing the open animation. Multiple effects should be separated with a space.

Complete list of available animations

Example

<input id="multicolumncombobox" />
<script>
$("#multicolumncombobox").kendoMultiColumnComboBox({
    animation: {
        open: {
            effects: "fadeIn slideDown"
        }
    },
    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
animation.open.effects
Not finding the help you need?
Contact Support