progressStatus jQuery

    The jQuery object which represents the progress status fields. This object could be empty if no progress status fields are currently existing in the DOM.

    Example - set custom progress status

    Open In Dojo
    <div id="progressbar"></div>
    <script>
      $("#progressbar").kendoProgressBar({
        change: function(e) {
          this.progressStatus.text("Custom status");
        }
      });
    
      $("#progressbar").data("kendoProgressBar").value(10);
    </script>
    In this article