New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
OnClientFileUploaded
The OnClientFileUploaded client-side event occurs after a file has been uploaded
The event handler receives two parameters:
-
The instance of the RadAsyncUpload control firing the event.
-
An eventArgs parameter containing the following methods:
-
get_fileInfo returns fileInfo object containing information regarding the uploaded file. Essentially, this is the UploadedFileInfo object serialized from the HttpHandler
-
get_fileName returns the name of the file selected
-
get_row returns the upload row for which the event was fired.
ASPNET
<telerik:RadAsyncUpload RenderMode="Lightweight" runat="server" ID="RadAsyncUpload1" OnClientFileUploaded="OnClientFileUploaded"></telerik:RadAsyncUpload>
JavaScript
function OnClientFileUploaded(sender, args) {
var contentType = args.get_fileInfo().ContentType;
var filename = args.get_fileName();
var currentRowElement = args.get_row();
alert(contentType);
}