0
Reply

Grouping is not working for my kendo listview

anusha kommawar

anusha kommawar

May 20 2014 6:31 AM
847
Hi,
       grouping is not working for my kendo listview.
Here is my code: Am i missing some thing..Please help ME!!!
$(document).ready(function () {
dataSource = new kendo.data.DataSource({
transport: {
read: {
url: "/api/Item_container_masters",
dataType: "json"
},
group: { field: "Type" }
},
batch: true,
pageSize: 6,
schema: {
model: {
id: "Id",
fields: {
Id: { editable: false, nullable: true },
Description: "Description",
Type:"Type",
}
}
}
});