New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
OnClientProgressStarted
The OnClientProgressStarted client-side event occurs when the RadProgressManager starts monitoring progress.
The event handler receives a single parameter:
- The instance of the RadProgressManager that is monitoring progress.
The following example uses the OnClientProgressStarted event to notify the user when progress monitoring starts:
ASPNET
<telerik:radprogressmanager runat="server" id="RadProgressManager1" onclientprogressstarted="progressStarted" />
<script type="text/javascript">
function progressStarted(radProgressManager) {
alert("Progress monitoring has started....");
}
</script>