page Number
(default: 0)
The initial page to display.
If the widget is bound to a DataSource, the initial item to display must be within the records from the first data page. For example if the DataSource has
pageSize: 32
the page configuration option of the ScrollView should not exceed 30.
<div data-role="view">
<div id="scrollView" data-role="scrollview" data-page="1">
<div data-role="page">Foo</div>
<div data-role="page">Bar</div>
</div>
</div>
<script>
var app = new kendo.mobile.Application();
</script>