or
We are very interesting about the telerik products we have gone through the many kendo examples which provided in telerik official website as well as in other forums but we just get the simple staff.
We are planning to start a new web project with the MVVM frame work with Kendo . We are unable to find the complete real example for Kendo UI for web based systems as you have developed it for telerik Ajax(eg : sales Dash Board).
If it is their sample code please be kind enough to send us
We are very much interesting to get you feed back on this
BS
Development Team
<ul id="books"></ul> <script id="template" type="text/x-kendo-template"> <li class="book"> <a href="#= url #"> <h3>#= title #</h3> </a> by #= author # </li> </script> <script> $(document).ready(function () { function onChage() { $("#books").html(kendo.render(template, this.view())); } // create a template using the above definition var template = kendo.template($("#template").html()); var dataSource = new kendo.data.DataSource({ transport: { // specify the XML file to read. The same as read: { url: "books.xml" } }, schema: { // specify the the schema is XML type: "xml", // the XML element which represents a single data record data: "/books/book", // define the model - the object which will represent a single data record model: { // configure the fields of the object fields: { // the "title" field is mapped to the text of the "title" XML element title: "title/text()", // the "author" field is mapped to the text of the "author" XML element author: "author/text()", // the "url" field is mapped to the text of the "url" XML element url: "url/text()", // the "cover" field is mapped to the "id" attribute of the "book" XML element cover: "@cover" } } }, change: onChage }); dataSource.read(); }); </script>