enable

Enables the scrolling of the element after it has been disabled by calling disable.

    <div data-role="view">
      Disable Scrolling
            Enable Scrolling
        <div data-role="scroller" style="width: 200px; height: 200px" id="scroller">
          <div style="height: 500px">
            Content
          </div>
        </div>
        bar
     </div>


    <script>
    function enableScrolling() {
      $("#scroller").data("kendoMobileScroller").enable();
    }

    function disableScrolling() {
      $("#scroller").data("kendoMobileScroller").disable();
    }

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