New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

OnClientProgressStarted

The OnClientProgressStarted client-side event occurs when the RadProgressManager starts monitoring progress.

The event handler receives a single parameter:

  1. The instance of the RadProgressManager that is monitoring progress.

The following example uses the OnClientProgressStarted event to notify the user when progress monitoring starts:

<telerik:radprogressmanager runat="server" id="RadProgressManager1" onclientprogressstarted="progressStarted" />
<script type="text/javascript">
    function progressStarted(radProgressManager) {
        alert("Progress monitoring has started....");
    } 
</script>
In this article