showLoading

Show the loading animation.

Example

<div data-role="view" id="foo"><a data-role="button" href="#bar">Bar</a></div>

<script>
  var app = new kendo.mobile.Application();
  $(function() {
    app.showLoading();
    setTimeout(function() {
        app.hideLoading();
    }, 2000);
  });
</script>
In this article