options Object
An object, which holds the information about the configuration options of the widget.
Example - get options of the widget
<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList();
var dropdownlist = $("#dropdownlist").data("kendoDropDownList");
var options = dropdownlist.options;
console.log(options) //open the console to see the options object
</script>