Skip to content

Instantly share code, notes, and snippets.

@jbristowe
Created April 13, 2012 04:09
Show Gist options
  • Save jbristowe/2373597 to your computer and use it in GitHub Desktop.
Save jbristowe/2373597 to your computer and use it in GitHub Desktop.
ListView Change Event
$("#listView").kendoListView({
change: function(e) {
var data = dataSource.view(),
selected = $.map(this.select(), function(item) {
return data[$(item).index()].ProductName;
});
// index selected or read item information through data
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment