refresh

Redraw the mobile ScrollView pager. Called automatically on device orientation change event.

Example

<div data-role="view">
  <div id="scrollView" data-role="scrollview">
    <div data-role="page">Foo</div>
    <div data-role="page">Bar</div>
  </div>
</div>

<script>
var app = new kendo.mobile.Application();

function refreshScrollView() {
  var scrollview = $("#scrollView").data("kendoMobileScrollView");
  scrollview.refresh();
}
</script>
In this article