or
$(document).ready(function () { var ds = null; ds = new kendo.data.DataSource({ transport: { read: { url: "data.json", dataType: "json" } }, change: function () { var data = this.data(); // or this.view(); } }); $("#grid").kendoGrid({ dataSource: ds,// dataSource: {// data: ds,// pageSize: 2// }, sortable: { mode: "single", allowUnsort: false }, columns: [ { field: "Product", title: "Product Title" }, { field: "Manufacturer", title: "Manufacturer Title" }, { field: "Description", title: "Description Title" }, { field: "Property2", title: "Property 2" } ] }); });