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

OnClientFilesUploaded

The OnClientFilesUploaded client-side event occurs when the files has finished uploading to the Cloud Storage Provider.

The event handler receives one parameter

  1. The instance of the RadCloudUpload control firing the event.
ASP.NET
<telerik:RadCloudUpload runat="server" ID="RadCloudUpload1" OnClientFilesUploaded="onClientFilesUploaded" MultipleFileSelection="Automatic" ...></telerik:RadCloudUpload>
JavaScript
function onClientFilesUploaded(sender, eventArgs) {
	var processFiles = confirm("All files were correctly uploaded. Do you want to process them to the Cloud Storage?");
	if (processFiles)
		**doPostBack();
}
Not finding the help you need?
Contact Support