events.selectionChange Property HTML5/Flash Uploader JavaScript

Supported technologies:

Gets or sets an array of SelectionChange event handlers.

Syntax

JavaScript Initialize
$au.imageUploaderFlash({
    events: {
        //...other params...
        selectionChange: [],
        //...other params...
    }
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').events().selectionChange(value);
value = $au.imageUploaderFlash('uploaderID').events().selectionChange();

Property Value

Type: $au.event

The string containing the name of SelectionChange event handler or an array of handler names.

Remarks

This event fires when a user changes a selection in the upload pane. To receive a list of all files which are currently selected, iterate through the files and check the selected property (boolean).

See Also

Reference