or
<script type="text/x-kendo-template" id="feedTemplate"> <div style="float:right"> > </div> <img class="item-image" src="${ImageUrl}" /> <h3 class="item-title">${Title}</h3> <p class="item-description">${Description}</p> <a href="\\#" data-role="button" class="delete">Delete</a> </script>app.view().scroller.reset();
input.kendoComboBox({ dataTextField: 'label', dataValueField: 'id', dataSource: { type: "json", serverFiltering: true, transport: { read: { url: 'api/getchoices, data: { filter: function(){ return input.val(); } } } } } });<input data-role="combobox" data-bind="value: id"/><div id="foo" data-role="view"> <a data-role="button" data-badge="1" data-click="resetClicks">Reset Badge Count</a></div><script>var app = new kendo.mobile.Application();function resetClicks() { this.badge(0); //set new badge value}</script>