uploadPane.viewMode Property HTML5/Flash Uploader JavaScript

Supported technologies: Adobe FlashHTML 5

Gets or sets a view mode for the upload pane.

Syntax

JavaScript Initialize
$au.imageUploaderFlash({
    uploadPane: {
        //...other params...
        viewMode: "Tiles",
        //...other params...
    }
})
Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').uploadPane().viewMode(value);
value = $au.imageUploaderFlash('uploaderID').uploadPane().viewMode();

Property Value

Type: String

The view mode for the upload pane.

The following values are supported:

ValueDescription
ThumbnailsImages are displayed as thumbnails, non-images are displayed as icons. It is possible to attach a description to each file. If a file is recognized as image, it can be rotated.
TilesEach file appears as a thumbnail (or icon for non-image files), with a file name and details (file type, last modification date, and file size) on the right. It is possible to attach a description to each file. If a file is recognized as image, it can be rotated.
IconsFiles are displayed as icons with their names on the right.

Default value is "Tiles".

See Also

Reference

Manual