autoClose Boolean
(default: true)
Controls whether to close the popup when item is selected or checked.
Example
<input id="dropdowntree"/>
<script>
$("#dropdowntree").kendoDropDownTree({
dataSource: [{ text: "item1", value: 1 }, { text: "item2", value: 2 }],
autoClose: false
});
</script>