Skip to content

Instantly share code, notes, and snippets.

@jbristowe
Created April 13, 2012 03:19
Show Gist options
  • Save jbristowe/2373365 to your computer and use it in GitHub Desktop.
Save jbristowe/2373365 to your computer and use it in GitHub Desktop.
Enabling ListView Paging, Selection, Navigation and Editing
$(document).ready(function(){
$("#listView").kendoListView({
pageable: true,
selectable: true,
navigatable: true,
editable: true
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment