or
<body style="padding: 0px;margin: 0px;height:100%;"> <div id="Replace@(uid)" style="width: 100%;height: 100%;position: relative;"></div> <script type="text/javascript"> jQuery(function () { jQuery.get('@Url.Action("Chart","SalesTarget", Request.QueryString.ToRouteValues())', function (data) { $('#Replace@(uid)').html(data); }); }); </script></body>jQuery(function(){jQuery("#charte5d435958d7e47569bd533bd3bd63d11").kendoRadialGauge({"pointer":{"value":0},"scale":{"minorUnit":5,"min":0,"max":2352000002.3961,"ranges":[{"from":0,"to":1568000001.5974,"color":"f2dd30"},{"from":1568000001.5974,"to":2352000002.3961,"color":"399E38"}],"endAngle":180,"startAngle":0},"theme":"bootstrap"});});<input class="#MyDDL" style="width:930px;">$('#MyDDL').kendoDropDownList({ index: 0, dataTextField: 'FirstName', dataValueField: 'ID', dataSource: myDataSource});$('#MyListView').kendoMobileListView({ dataSource: myRemoteDataSource, template: myTemplate, autoBind: false, endlessScroll: true, scrollTreshold: 30 });var myRemoteDataSource = new kendo.data.DataSource({ pageSize: 10, serverPaging: true, transport: { read: { url: 'http://myremotedata' }, parameterMap: function (data, type) { var startRow = ((data.page - 1) * data.pageSize) + 1; return { strow: startRow, rpp: data.pageSize }; } }, schema: { data: 'Data', total: 'Total' } });myRemoteDataSource.query({ page: 45, pageSize: 10 }); // 45 is a random page.