Skip to content

Instantly share code, notes, and snippets.

@lohithgn
Last active July 19, 2016 13:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lohithgn/cc8c0664013b1eca9321ced53ea18192 to your computer and use it in GitHub Desktop.
Save lohithgn/cc8c0664013b1eca9321ced53ea18192 to your computer and use it in GitHub Desktop.
$("#grid").kendoGrid({
dataSource:{
type:"odata-v4",
transport:{
read:"http://services.odata.org/V4/Northwind/Northwind.svc/Orders"
},
pageSize:15,
serverPaging:true
},
pageable:true,
columns:[
{field:"OrderID",title:"Order",width:"100px"},
{field:"CustomerID",title:"Customer"},
{field:"ShipName",title:"Shipper"},
{field:"ShipCity",title:"City"},
{field:"ShipCountry",title:"Country"},
{field:"OrderDate",title:"Ordered",width:"120px"},
{field:"RequiredDate",title:"Required", width:"120px"},
{field:"ShippedDate",title:"Shipped", width:"120px"},
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment