uploader_fileselected_handler

Client side event handler for AJAXUploader.ClientSideOnFileSelected event.

Note: This is a prototype, not a function. You should provide a function that matches this prototype if you wish to handle the corresponding event on the client side. The prototype provides information about the arguments and return value of the function you provide.

Syntax
JavaScript
 uploader_fileselected_handler(ajaxUploader, selectedFiles)

Parameters

ajaxUploader
The AJAXUploader object that caused this event.
selectedFiles
An array that contains all selected file names.
Remarks

Returns false to indicates that at least one file name is invalid thus prevents the upload from starting.

See Also