The Kendo Mobile Scroller widget enables touch friendly kinetic scrolling for the contents of a given DOM element.
Each mobile View initializes a scroller for its content element. In addition to that, a scroller will be initialized for every element with a
role data attribute set to scroller. Alternatively, it can be initialized using jQuery selector.
<div data-role="scroller">
Foo
</div><div id="scroller"></div>
<script>
var listView = $("#scroller").kendoMobileScroller();
</script>