New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

OnClientLoad

The OnClientLoad event occurs after the RadCloudUpload has been fully initialized at the client-side.

The event handler receives one parameter:

  1. The instance of the RadCloudUpload control firing the event.

This event is helpful if you need to get the client-side instance of the RadCloudUpload. Hook the OnClientLoad event and get the client-side instance of the control as demonstrated in the example below. This technique can be used to retrieve the RadCloudUpload instance for use elsewhere.

<telerik:RadCloudUpload runat="server" ID="RadCloudUpload1" OnClientLoad="onClientLoad" ...>
</telerik:RadCloudUpload>
function onClientLoad(sender) {
    var cloudUpload;
    cloudUpload = sender;
}
In this article