New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
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. |
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();