````
$("#grid").kendoGrid({
dataSource: {
type: "odata",
transport: {
read: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Customers"
},
pageSize: 15
},
height:600,
groupable: true,
sortable: true,
pageable: {
refresh: true,
pageSize: 15,
pageSizes: [15,30,50,'all'],
buttonCount: 5
},
columns: [{
template: "<div class='customer-photo'" +
"style='background-image: url(https://demos.telerik.com/kendo-ui/content/web/Customers/#:data.CustomerID#.jpg);'></div>" +
"<div class='customer-name'>#: ContactName #</div>",
field: "ContactName",
title: "联系人",
width: 210
}, {
field: "ContactTitle",
title: "职位"
}, {
field: "CompanyName",
title: "公司"
}, {
field: "Country",
title: "国家",
width: 150
}]
});
```````