options Object
An object, which holds the options of the widget.
Example - get options of the widget
<input id="dropdowntree"/>
<script>
$("#dropdowntree").kendoDropDownTree();
var dropdowntree = $("#dropdowntree").data("kendoDropDownTree");
var options = dropdowntree.options;
</script>