uploadSettings.enableInstantUpload Property HTML5/Flash Uploader JavaScript

Supported technologies:

Gets or sets a value indicating whether to start sending files right after they are added to the upload pane without waiting for Upload button click.

Syntax

JavaScript Initialize
$au.imageUploaderFlash({
    uploadSettings: {
        //...other params...
        enableInstantUpload: false,
        //...other params...
    }
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').uploadSettings().enableInstantUpload(value);
value = $au.imageUploaderFlash('uploaderID').uploadSettings().enableInstantUpload();

Property Value

Type: Boolean

If true, the upload process starts instantly when files are added to the upload pane. Otherwise, the upload starts when the Upload button is clicked.

Default value is false.

See Also

Reference