or
<div data-role="view" data-title="Brokers" id="side-root"> <ul id="lvBroker" data-role="listview" data-style="inset" data-source="brokers1" data-template="brokerTemplate"> </ul> </div> <script id="brokerTemplate" type="text/x-kendo-template"> <table> <tr> <td> #: data.LastName #, #: FirstName # <br/>ph: #: Phone # </td> </tr> </table> </script>var brokers1 = new kendo.data.DataSource({ transport: { read: { type: 'GET', url: 'http://website.com/api/brokers' + '/' + 1 + '/all', dataType: 'json' } } });$(document).ready(function(){ var app = new kendo.mobile.Application(document.body, { transition: "slide" //platform: "android" }); // brokers1.fetch(function(){ // brdata = this.data(); // });});