• content (content)
    Update the scrollview HTML content

    Example

    <div data-role="scrollview" id="scrollview"></div>
    
    <script>
       $("#scrollview").data("kendoMobileScrollView").content("<span>Foo</span>");
    </script>

    Parameters

    content: String | jQuery
    the new scrollView content.
  • refresh ()
    Redraw the mobile ScrollView pager. Called automatically on device orientation change event.

    Example

    <div data-role="scrollview" id="scrollview"></div>
    
    <script>
       $("#scrollview").data("kendoMobileScrollView").refresh();
    </script>
  • scrollTo (page)
    Scroll to the given page. Pages are zero-based indexed.

    Example

    <div data-role="scrollview" id="scrollview"></div>
    
    <script>
       // Scroll to the second page of the scrollView
       $("#scrollview").data("kendoMobileScrollView").scrollTo(1);
    </script>

    Parameters

    page: Number
    The page to scroll to.