hide

Hide the loading animation.

Example - display loading animation for 7 seconds, then hide it

<div id="foo" data-role="view" data-show="onShow"></div>

<script>
var app = new kendo.mobile.Application();
function onShow() {
  app.pane.loader.show();
  setTimeout(function() {
    app.pane.loader.hide(); //hide loading animation
  }, 7000);
}
</script>
In this article