The Kendo Mobile Scroller widget enables touch friendly kinetic scrolling for the contents of a given DOM element.

Getting Started

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.

Initialize mobile Scroller using a role data attribute.

<div data-role="scroller">
  Foo
</div>

Initialize mobile Scroller using a jQuery selector.

<div id="scroller"></div>
<script>
var listView = $("#scroller").kendoMobileScroller();
</script>