Skip to main content
A newer version of this page is available. .

ASPxClientFileManager.FilesUploaded Event

Occurs on the client side after upload of all selected files has been completed.

Declaration

FilesUploaded: ASPxClientEvent<ASPxClientFileManagerFilesUploadedEventHandler<ASPxClientFileManager>>

Event Data

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

Property Description
fileNames Gets an array of uploaded file names.
folder Gets the path to the folder where files are uploaded.

Remarks

The FilesUploaded event serves as a notification that all selected files have been uploaded. The FilesUploaded event is generated after the ASPxClientFileManager.FileUploaded events related to all uploaded files have been fired.

You can use the event parameter’s properties to get an array of uploaded file names (ASPxClientFileManagerFilesUploadedEventArgs.fileNames) or a folder where the files have been uploaded (ASPxClientFileManagerFilesUploadedEventArgs.folder).

To specify if a file can be uploaded and cancel the action, handle the ASPxClientFileManager.FileUploading event.

See Also