The ListView is designed to give your the freedom to specify custom type of layout for the items displayed in the control. It can be bound to local JSON data or to remote data using the Kendo DataSource component.
<ul id="listView"></ul>
$(document).ready(function(){
$("#listView").kendoListView({
template: "<li>${FirstName} ${LastName}</li>",
dataSource: {
data: [
{
FirstName: "Joe",
LastName: "Smith"
},
{
FirstName: "Jane",
LastName: "Smith"
}]
}
});
});
$(document).ready(function(){
$("#listView").kendoListView({
pageable: true,
selectable: true,
navigatable: true,
editable: true,
template: "<li>${FirstName}</li>",
editTemplate: '<li><input type="text" data-bind="value:FirstName" name="FirstName" required="required"/></li>'
});
});