You must use the select method to get a list of selected nodes.
Given the following initialization:
var list = $("#list").kendoListView({ dataSource: data, template : "<li>${title}</li>", selectable: "multiple" }).data("kendoListView");
You can use:
var selected = list.select(); console.log("selected", selected);
Check select documentation here
source share