• hideLoading ()
    Hide the loading animation.
  • navigate (url, transition)
    Navigate the local or remote view.

    Navigate to a remote view

    <div data-role="pane" id="main-pane">
    </div>
    
    <script>
    var pane = $("#main-pane").data("kendoMobilePane");
    pane.navigate("settings.html");
    </script>

    Navigate to a local view

    <div data-role="pane" id="main-pane">
      <div data-role="view" id="foo"> ... </div>
    </div>
    
    <script>
    var pane = $("#main-pane").data("kendoMobilePane");
    pane.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.
  • showLoading ()
    Show the loading animation.
  • view () : View
    Get a reference to the current view.
    Returns
    View the view instance.