uploadProgressDialog.infoText Property ActiveX/Java Uploader JavaScript

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets a caption of the label which displays the upload propgress information.

Syntax

JavaScript Initialize
$au.uploader({
    uploadProgressDialog: {
        //...other params...
        infoText: "Files uploaded: [files]/[totalFiles] ([bytes] of [totalBytes])",
        //...other params...
    }
})

Property Value

Type: String

The text of the Files uploaded label. It can contain the following placeholder:

[files]
replaced by the number of files that have already been sent to a server.
[totalFiles]
replaced by the total number of files which should be sent in this upload session.
[bytes]
replaced by the number of bytes that have already been sent to a server.
[totalBytes]
replaced by the total size of the upload session.

Default value is "Files uploaded: [files]/[totalFiles] ([bytes] of [totalBytes])".

Remarks

Note

The estimation of the uploaded and total bytes may be quite inaccurate and depends on the uploadSettings.progressBytesMode.

This property is necessary for localization of ActiveX/Java Uploader.

See Also

Reference