pullToRefresh Boolean(default: false)

If set to true, the scroller will display a hint when the user pulls the container beyond its top limit. If a pull beyond the specified pullOffset occurs, a pull event will be triggered.

Example

<div data-role="view">
    foo
    <div data-role="scroller" style="width: 200px; height: 200px" data-pull-to-refresh="true">
        <div style="height: 500px">
            Content
        </div>
    </div>
    bar
</div>

<script>
new kendo.mobile.Application();
</script>
In this article