enabled Boolean
(default: true)
Indicates whether the DropDownButton should be enabled or disabled. By default, it is enabled, unless a disabled="disabled"
attribute is detected.
Example
<button id="dropdownbutton" type="button">Foo</button>
<script>
$("#dropdownbutton").kendoDropDownButton({
items:[
{ text: "item 1" },
{ text: "item 2" }
],
enabled: false
});
</script>