items

Obtains an Array of the DOM elements, which correspond to the data items from the Kendo UI DataSource view.

Returns

Array The currently rendered dropdown list items (<li> elements).

Example

<select id="multiselect" multiple="multiple">
    <option>Item1</option>
    <option>Item2</option>
</select>
<script>
var multiselect = $("#multiselect").kendoMultiSelect().data("kendoMultiSelect");

// Get the items
var items = multiselect.items();
console.log(items);
</script>
In this article
items
Not finding the help you need?
Contact Support