New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
OnClientFileSelected
The OnClientFileSelected client-side event occurs when a file is selected in a file input control.
The event handler receives two parameters:
-
The instance of the RadAsyncUpload control firing the event.
-
An eventArgs parameter containing the following methods:
-
get_fileInputField returns the file input field for the file that was just selected. (only when IFrame or FileAPI module is used)
-
get_row returns the row containing the file input field for the file that was just selected (<li> element)
-
get_rowIndex returns the index of the row
-
get_fileName returns the name of the file selected
ASPNET
<telerik:RadAsyncUpload RenderMode="Lightweight" runat="server" ID="RadAsyncUpload1" OnClientFileSelected="OnClientFileSelected"></telerik:RadAsyncUpload>
JavaScript
function OnClientFileSelected(sender, args) {
var currentFileName = args.get_fileName();
alert(currentFileName);
}