The Kendo Mobile ScrollView widget is used to scroll content wider than the device screen.
The Kendo Mobile Application automatically initializes the Mobile ScrollView for every element with role data attribute set to scrollview present in the views' markup.
Alternatively, it can be initialized using a jQuery selector.
<div data-role="scrollview">
Foo
</div><div id="scrollView"></div>
<script>
var listView = $("#scrollView").kendoMobileScrollView();
</script>role data attribute
set to page.<div id="scrollView">
<div data-role="page">Foo</div>
<div data-role="page">Bar</div>
</div>