sizeString(default: undefined)
Controls the overall physical size of a button. When undefined (the default), the theme controls the default size. Valid values are: "small", "medium", "large".
The
"none"value is deprecated. Use custom CSS instead.
Example
<button id="dropdownbutton" type="button">Cancel</button>
<script>
$("#dropdownbutton").kendoDropDownButton({
items:[
{ text: "item 1" },
{ text: "item 2" }
],
size: "large"
});
</script>