• hideLoading ()
    Hide the loading animation.

    Example

    <script>
      var app = new kendo.mobile.Application();
      app.hideLoading();
    </script>
  • navigate (url, transition)
    Navigate to local or to remote view.

    Navigate to a remote view

    var app = new kendo.mobile.Application();
    app.navigate("settings.html");

    Navigate to a local view

    <div data-role="view" id="foo"> ... </div>
    
    <script>
    var app = new kendo.mobile.Application();
    app.navigate("#foo");
    </script>

    Parameters

    url: String
    The id or url of the view.
    transition: String
    The transition to apply when navigating. See View Transitions section for more information.
  • scroller () : Scroller
    Get a reference to the current view's scroller widget instance.
    Returns
    Scroller the scroller widget instance.
  • showLoading ()
    Show the loading animation.

    Example

    <script>
      var app = new kendo.mobile.Application();
      app.showLoading();
    </script>
  • view () : View
    Get a reference to the current view.
    Returns
    View the view instance.