New to Kendo UI for jQueryStart a free 30-day trial

Items

methods

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).

<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>
Not finding the help you need?
Contact Support