or
In the Web demos section, there is a grid which displays its data in a master/detail type format. The demo I’m referring to can be found here:
The grid pulls the data from the following services/feed:
http://demos.kendoui.com/service/Northwind.svc/Employees?$format=json&$inlinecount=allpages&$callback=callback&$top=5 http://demos.kendoui.com/service/Northwind.svc/Employees%281%29/Orders?$format=json&$inlinecount=allpages&$callback=callback&$top=5
Thanks,

gridMain = $("#gridMain").kendoGrid({ dataSource: dsMain, height: 500, filterable: true, scrollable: true, pageable: false, selectable: 'row', sortable: true, columns : [ { field: "dt", title: "Tarih", width: "120px"}, { field: "defi", title: "Açıklama"}, /*{ field: "amn_tot", title: "Toplam Tutar", width: "120px"},*/ { field: "id", title: "İşlemler", template: actionTemplate, width: "130px"} ], change : function(e) { selectedRows = []; for (var i = 0, l = this.select().length; i < l; i++) { var xid = this.select()[i].dataset.id; selectedRows.push(xid); }; //console.log(selectedRows); /* console.log(this.dataSource.view()[this.select() .index()]["id"]); */ }}); 
seriesDefaults: { type: "pie", overlay: { gradient: "none" }},series: [{ field: "Amounts[0].Amount", categoryField: "Name"}],tooltip: { visible: true, format: "{0:N0}", template: "${category}<br>${value}"}<script>$(document).ready(function() { var dataSource = new kendo.data.DataSource({ transport: { read: { url: "filters.json", dataType: "json" } }, change: function() { // subscribe to the CHANGE event of the data source// do stuff here... }); // read data from the "movies" array dataSource.read(); });</script>[{id:"oflc",title:"Classification",items:[{title:"root",values:"CTC,G,PG,M,MA,R"}]},{id:"drwho",title:"Favourite Doctor",items:[{title:"Classic",values:"William Hartnell,Patrick Troughton,Jon Pertwee,Tom Baker,Peter Davison,Colin Baker,Sylvester McCoy,Paul McGann"},{title:"2005+",values:"Christopher Eccleston,David Tennant,Matt Smith"},{title:"Non-canon",values:"Peter Cushing"}]},{id:"q",title:"Search term",items:[{title:"root",values:"ANY"}]},{id:"format",title:"Format",items:[{title:"root",values:"3D Blu-ray,Blu-ray,DVD"}]},{id:"companion",title:"Favourite Companion",items:[{title:"Classic",values:"Mary Tamm_Lala Ward[Romana],John Leeson[K9],Nicola Bryant[Peri],Katy Manning[Jo Grant]"},{title:"2005+",values:"Karen Gillan[Amy Pond]"}]},{id:"price",title:"Price",items:[{title:"root",values:"<20[Under $20]"}]}]categoryAxis: { field: 'Mois', labels: { template: "#=kendo.cultures.current.calendar.months.namesAbbr[value-1]" }}