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

statusPane.filesToUploadText Property

Gets or sets a text on the status pane which is displayed when at least one file is added to the upload pane.

Syntax

JavaScript Initialize
$au.imageUploaderFlash({
    statusPane: {
        //...other params...
        filesToUploadText: "<font color='#7a7a7a'>Total files:</font> {0}",
        //...other params...
    }
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').statusPane().filesToUploadText(value);
value = $au.imageUploaderFlash('uploaderID').statusPane().filesToUploadText();

Property Value

Type: String

The text stating how many files are added to the upload pane. It can contain the following placeholder:

[count]
replaced by the number of files actually added to the upload pane.

Default value is "<font color='#7a7a7a'>Total files:</font> {0}".

Remarks

This property is necessary for localization of Image Uploader Flash.

See Also

Reference