popupObject
The options that will be used for the popup initialization. For more details about the available options refer to Popup documentation.
Example
<button id="dropdownbutton" type="button">Options</button>
<script>
$("#dropdownbutton").kendoDropDownButton({
items: [
{ text: "Option 1" },
{ text: "Option 2" },
{ text: "Option 3" }
],
popup: {
origin: "bottom left",
position: "top left",
anchor: "left",
appendTo: "body",
animation: {
open: { effects: "fadeIn" },
close: { effects: "fadeOut" }
}
}
});
</script>
In this article