showLoading
Show the loading animation.
<div data-role="view" id="foo">Bar</div>
<script>
var app = new kendo.mobile.Application();
$(function() {
app.showLoading();
setTimeout(function() {
app.hideLoading();
}, 2000);
});
</script>