size String
(default: "medium")
Sets a value controlling size of the component. Can also be set to the following string values:
- "small"
- "medium"
- "large"
- "none"
Example - set the size
<input id="ddt" />
<script>
$("#ddt").kendoDropDownTree({
dataSource: [
{ text: "Chai", value: 1 },
{ text: "Chang", value: 2 },
{ text: "Tofu", value: 3 }
],
size: "large"
});
</script>