checkboxes.name String
Sets the name attribute of the checkbox inputs. That name will be posted to the server.
Example
<input id="dropdowntree" />
<script>
$("#dropdowntree").kendoDropDownTree({
dataSource: [
{
text: "foo", items: [
{ text: "bar" },
{ text: "bar1" }
]
}
],
checkboxes: {
name: "checkedItems[]"
}
});
</script>