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

statusPane.filesPreparedText Property

Gets or sets the caption of the Files prepared label.

Syntax

JavaScript Initialize
$au.imageUploaderFlash({
    statusPane
: {
       
//...other params...
        filesPreparedText
: "Files prepared: {0} / {1}",
       
//...other params...
   
}
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').statusPane().filesPreparedText(value);
value
= $au.imageUploaderFlash('uploaderID').statusPane().filesPreparedText();

Property Value

Type: String

The caption of the Files prepared label.

To be able to display additional information in this label, special placeholders are used:

{0}
replaced by the currently processed file number.
{1}
replaced by the total number of files to be processed.

Default value is "Files prepared: {0} / {1}".

See Also

Reference