title | page_title | description | slug | tags | published | position |
---|---|---|---|---|---|---|
OnClientProgressStarted |
OnClientProgressStarted - RadProgressArea |
Check our Web Forms article about OnClientProgressStarted. |
progressarea/client-side-programming/onclientprogressstarted |
onclientprogressstarted |
true |
3 |
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:
<telerik:radprogressmanager runat="server" id="RadProgressManager1" onclientprogressstarted="progressStarted" />
<script type="text/javascript">
function progressStarted(radProgressManager) {
alert("Progress monitoring has started....");
}
</script>