or
$("#gridTitles").kendoGrid({ dataSource: { type: "json", transport: { read: "../services/getTitles", parameterMap: function (options) { return $.extend(options, { collection: collection }); } }, schema: { model: { fields: { Title: { type: "string" }, OFLC: { type: "string" } } } }, pageSize: 10, serverPaging: true, serverSorting: true }, height: 250, sortable: true, pageable: true, columns: [{ field: "Title", title: "Title" }, { field: "OFLC", title: "Rating"}] });[{"Title":"Doctor Who and the Daleks","OFLC":"PG"},{"Title":"Doctor Who: Attack of the Cybermen","OFLC":"M"},{"Title":"Doctor Who: Battlefield","OFLC":"PG"},{"Title":"Doctor Who: Beneath the Surface - The Silurian Collection","OFLC":"PG"},{"Title":"Doctor Who: Black Orchid","OFLC":"PG"}]{["SOME KEY": [{"Title": "something here...", "oflc":"something here..."}]}$(document).ready(function () { $("#ktsMain").kendoTabStrip(); $("#ktgMain").kendoGrid ({ columns: [ { field: "ProjectName", title: "Project Name" } ] , dataSource: { type: "json" , transport: { read: { url: "http://localhost:7651/home/summaries" , type: "GET" , contentType: "application/json; charset=utf-8" } }// , schema:// {// data: "ProjectSummaries"// } } , editable: false , height: 500 }); });