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

uploader.enableCheckByClick Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets a value indicating whether the mode, which allows to select a file for upload by clicking on it, is enabled or not.

Syntax

JavaScript Initialize
$au.uploader({
    //...other params...
    enableCheckByClick: false,
    //...other params...
})
Get/Set Value at Runtime
$au.uploader('uploaderID').enableCheckByClick(value);
value = $au.uploader('uploaderID').enableCheckByClick();

Property Value

Type: Boolean

The value indicating whether the mode, which allows to select a file for upload by clicking on it, is enabled or not.

Default value is false.

Remarks

In this mode files cannot be opened by double-clicking.

See Also

Reference