loading String (default: "Loading...")

The text displayed in the loading popup. Setting this value to false will disable the loading popup.

Example

<div data-role="splitview">
  <div data-role="pane" id="my-pane" data-loading="Wait!">
      <div data-role="view" id="foo" data-show="showLoading">
        Foo
      </div>
    </div>
 </div>

<script>
new kendo.mobile.Application();

function showLoading(e) {
  $("#my-pane").data("kendoMobilePane").showLoading();
}
</script>
In this article