pull

Fires when the pull option is set to true, and the user pulls the scrolling container beyond the specified pullThreshold.

Example

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

<script>
function foo() {
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log("foo!");
}
new kendo.mobile.Application();
</script>
In this article