This documentation is for the old version. Go to the latest Upload Suite docs

uploadSettings.enableInstantUpload Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

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.uploader({
    uploadSettings: {
        //...other params...
        enableInstantUpload: false,
        //...other params...
    }
})
Get/Set Value at Runtime
$au.uploader('uploaderID').uploadSettings().enableInstantUpload(value);
value = $au.uploader('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.

Remarks

Note

This property takes effect in OnePane layout only.

If this property is true it causes the following changes in Image Uploader user interface:

  • The uploading files dialog is initially hidden.
  • The status pane is equipped with a progress bar indicating the upload progress.
  • The uploading files dialog can be shown by clicking the status pane.
  • The uploading files dialog contains the Hide button which makes this dialog invisible.

See Also

Reference

Manual