uploadSettings.uploadConverterOutputSeparately Property ActiveX/Java Uploader JavaScript

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

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

Syntax

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

Property Value

Type: Boolean

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

Default value is false.

Remarks

Note

When ActiveX/Java Uploader sends converted files separately it does not take into account the filesPerPackage value. However, if the chunkSize is greater than 0, ActiveX/Java Uploader divides converted files, which size exceeds this value, into chunks and sends them separately.

See Also

Reference

Manual