uploadSettings.uploadConverterOutputSeparately Property HTML5/Flash Uploader JavaScript

Supported technologies:

Gets or sets a value indicating whether to send each converted file in a separate request.

Syntax

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

Property Value

Type: Boolean

If true, each converted file is uploaded in a separate POST request.

Default value is false.

See Also

Reference