New to Telerik UI for ASP.NET AJAX? Start 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
- 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();
}