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

folderPane.headerText Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets a text of the Folder pane header.

Syntax

JavaScript Initialize
$au.uploader({
    folderPane: {
        //...other params...
        headerText: "<totalLink>total [totalCount]</totalLink>, <allowedLink>Allowed [allowedCount]</allowedLink>",
        //...other params...
    }
})

Property Value

Type: String

The text of the Folder pane header. It can contain the following placeholders:

[totalCount]
replaced by the total number of files.
[allowedCount]
replaced by the number of allowed files.

Also this text can contain the following tags:

<totalLink></totalLink>
defines a hyperlink allowing users to display all files contained in the current folder (regardless of applied restrictions).
<allowedLink></allowedLink>
defines a hyperlink allowing users to display only those files in the current folder which fit specified restrictions.

Default value is "<totalLink>total [totalCount]</totalLink>, <allowedLink>Allowed [allowedCount]</allowedLink>".

Remarks

This property is necessary for localization of Image Uploader.

See Also

Reference