changeLoadingMessage

Changes the loading message.

    <div data-role="view">
        Show loading
    </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