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

OnClientFileUploadRemoved

The OnClienFileUploadRemoved occurs after the selected file has been removed from the FileListPanel.

The event handler receives two parameters:

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

  2. An eventArgs parameter containing the following methods:

  • get_fileName The name of the file that has been removed from the uploaded files collection.
<telerik:RadCloudUpload runat="server" ID="RadCloudUpload1" OnClientFileUploadRemoved="OnClientFileUploadRemoved" ...></telerik:RadCloudUpload>
function onClientFileUploadRemoved(sender, eventArgs) {
    var fileName = eventArgs.get_fileName();
    alert("File " + fileName + " has just been removed!");
}
In this article