disable
Disables the scrolling of the element.
<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>