ul jQuery
A jQuery object of the ul
element, which holds the available options.
Example - get ul element
<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList();
var dropdownlist = $("#dropdownlist").data("kendoDropDownList");
var ul = dropdownlist.ul;
</script>