Hello Dimiter,
I still have this issue on IE11, Chrome the listview change event is not fired, only in Firefox seems to be OK. I used Kendo UI v2015.2.624 .
This is a simple example:
$("#selectNursingHome").kendoListView({
template: "<option>#: name#</option>",
dataSource: [
{ name: "John Doe", age: 30 },
{ name: "Smith Sam", age: 30 }
],
selectable: true
});
var listView = $("#selectNursingHome").data("kendoListView");
// bind to the change event
listView.bind("change", function(e) {
alert("test");
});
Thank you!