enable

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

Example

<div data-role="view">
  <a data-role="button" data-click="disableScrolling">Disable Scrolling</a>
        <a data-role="button" data-click="enableScrolling">Enable Scrolling</a>
    <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