uploadPane.visible Property HTML5/Flash Uploader JavaScript

Supported technologies:

Gets or sets a value specifying whether to display the upload pane.

Syntax

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

Property Value

Type: Boolean

If false, the upload pane is hidden.

Default value is true.

Remarks

Sometimes you may want to hide the uploader completely and implement your own user interface (e.g. add two buttons which call addFiles() and upload() methods and generate a file list using the UploadFileCountChange event). In this case you should set the Visible param of all three panes - UploadPane, TopPane and StatusPane.

See Also

Reference