tagList jQuery

A jQuery object of the ul element, which holds the selected tags. It is only available when checkboxes is 'true'.

Example - get tagList element

<input id="dropdowntree" />
<script>
    $("#dropdowntree").kendoDropDownTree({
        checkboxes: true
    });

    var dropdowntree = $("#dropdowntree").data("kendoDropDownTree");

    var tagList = dropdowntree.tagList;
</script>
In this article