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

paneItem.imageTooltip Property

Gets or sets the text of the tooltip which is displayed when the mouse pointer hovers over the image item.

Syntax

JavaScript Initialize
$au.imageUploaderFlash({
    paneItem: {
        //...other params...
        imageTooltip: "{0}\n{1}, {3}, \nModified: {2}",
        //...other params...
    }
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').paneItem().imageTooltip(value);
value = $au.imageUploaderFlash('uploaderID').paneItem().imageTooltip();

Property Value

Type: String

The text of the tooltip which is displayed when the mouse pointer hovers over the image item.

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

{0}
replaced by the name of the image file.
{1}
replaced by the size of the image file.
{2}
replaced by the last modification date of the image file.
{3}
replaced by the dimensions of the image.

Default value is "{0}\n{1}, {3}, \nModified: {2}".

See Also

Reference