scroller

Get a reference to the current view's scroller widget instance.

Example

<div data-role="view" id="foo"><div style="height: 1000px">Scroll a bit... </div><a data-role="button" data-click="resetScroller">Bar</a></div>

<script>
    var app = new kendo.mobile.Application();

    function resetScroller() {
        app.scroller().reset();
    }
</script>

Returns

kendo.mobile.ui.Scroller the scroller widget instance.

In this article