checkboxes Boolean|Object
If true
or an object, renders checkboxes beside each node. In this case the widget value should be an array.
Example - show node checkboxes
<input id="dropdowntree" />
<script>
$("#dropdowntree").kendoDropDownTree({
dataSource: [
{
text: "foo", items: [
{ text: "bar" }
]
}
],
checkboxes: true
});
</script>