or
<script> function createSpeedGauge() { $("#speedBar").kendoLinearGauge({ pointer: { value: 0, color: "black", start: 0 }, scale: { majorUnit: 20, minorUnit: 2, min: -120, max: 120, vertical: true, reverse: true, ranges: [ { from: -120, to: -30, color: "#ffc700" }, { from: 120, to: 30, color: "#ffc700" } ] } }); } $(document).ready(function() { createSpeedGauge(); });</script><div data-role="view" id="first" > <ul data-role="listview" data-style="inset"> <li><input min="0" max="10" step="1" type="range" id="input1" /></li> </ul> </div>app = new kendo.mobile.Application(document.body, { transition: "fade", initial:'#first', loading: "<h1>Please wait...</h1>"});Note that i am currently trying to implement this without the PHP Wrapper.
Any help would be welcome !
.DataSource(dataSource => dataSource
.Ajax()
)
I want to use Server data binding instead of Ajax binding but whenever I omit the preceding code in my helper, the buttons for hierarchy don't show up.