changeLoadingMessage

Changes the loading message.

Example

<div data-role="view">
    <a data-role="button" data-click="showLoading">Show loading</a>
</div>

<script>
    var app = new kendo.mobile.Application();
    function showLoading() {
        app.showLoading();
        setTimeout(function() {
            app.changeLoadingMessage("Please wait...");
        }, 1000);
    }
</script>

Parameters

text String

New text of the loading animation.

In this article