Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 992 Bytes

onclientprogressstarted.md

File metadata and controls

34 lines (23 loc) · 992 Bytes
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

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>