RadControls for ASP.NET AJAX 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 the
form.submit event by itself, or when you need to start the progress monitoring before the form is submitted. |
CopyASPX
<telerik:radprogressmanager runat="server" id="RadProgressManager1" registerforsubmit="false" />
<input type="button" value="Start" onclick="myStart()" />
<script type="text/javascript">
function myStart() {
getRadProgressManager().startProgressPolling();
}
</script>
hideProgressAreas | none | none | Hides all RadProgressArea dialogs that are currently showing. |
CopyJavaScript
getRadProgressManager().hideProgressAreas();
See Also