New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

RadProgressManager Client Object

The following table lists the important methods of the RadProgressManager client object:

NameParametersReturn TypeDescription
startProgressPollingnonenoneStarts the progress polling. This method is useful when RadProgressManager does not handle theform.submit event by itself, or when you need to start the progress monitoring before the form is submitted. See Example 1.
hideProgressAreasnonenoneHides all RadProgressArea dialogs that are currently showing. See Example 2.

Example 1: Start the progress polling.

ASPNET
<telerik:RadProgressManager runat="server" id="RadProgressManager1" registerforsubmit="false" />
<input type="button" value="Start" onclick="myStart()" />
<script type="text/javascript">
	function myStart() {
		getRadProgressManager().startProgressPolling(); 
	}
</script>

Example 2: Hide all RadProgressArea dialogs.

JavaScript
getRadProgressManager().hideProgressAreas();

See Also

In this article
See Also
Not finding the help you need?
Contact Support