Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1.71 KB

radprogressmanager-client-object.md

File metadata and controls

53 lines (34 loc) · 1.71 KB
title page_title description slug tags published position
RadProgressManager Client Object
RadProgressManager Client Object - RadProgressArea
Check our Web Forms article about RadProgressManager Client Object.
progressarea/client-side-programming/radprogressmanager-client-object
radprogressmanager,client,object
true
1

RadProgressManager Client Object

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

Name Parameters Return Type Description
startProgressPolling none none Starts 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.
hideProgressAreas none none Hides all RadProgressArea dialogs that are currently showing. See Example 2.

caption Example 1: Start the progress polling.

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

caption Example 2: Hide all RadProgressArea dialogs.

getRadProgressManager().hideProgressAreas();

See Also

  • [RadAsyncUpload Client-side Programming Overview]({%slug asyncupload/client-side-programming/overview%})

  • [RadAsyncUpload Client-side events]({%slug asyncupload/client-side-programming/events%})

  • [ProgressData]({%slug progressarea/client-side-programming/progressdata%})