Skip to main content

ASPxClientFileManager.SelectedFileChanged Event

Fires on the client side after the selected file has been changed.

Declaration

SelectedFileChanged: ASPxClientEvent<ASPxClientFileManagerFileEventHandler<ASPxClientFileManager>>

Event Data

The SelectedFileChanged event's data class is ASPxClientFileManagerFileEventArgs. The following properties provide information specific to this event:

Property Description
file Gets a file related to the event.

Remarks

Write the SelectedFileChanged event handler to perform a specific action each time the selected file is changed.

Example

The code below demonstrates how you can use the client GetFullName method to display the selected file’s full name.

<dx:ASPxLabel ID="ASPxLabel1" runat="server" ClientInstanceName="label" Text="Files">
</dx:ASPxLabel>

<dx:ASPxFileManager ID="ASPxFileManager1" runat="server" ClientIDMode="AutoID">
    <Settings ThumbnailFolder="~\Thumb" Rootfolder="~\"></Settings>
    <ClientSideEvents SelectedFileChanged="function(s, e) {
    if(e.file)
            label.SetText(e.file.GetFullName());}" />
</dx:ASPxFileManager>
See Also