Aurigma Image Uploader 7.0.37
uploader.enableUploadProgress Property
Gets or sets a value indicating whether the uploading files dialog is shown during the upload.
Syntax
JavaScript
Initialize
$au.uploader({
//...other params...
enableUploadProgress: true,
//...other params...
})
Get/Set Value at Runtime
$au.uploader('uploaderID').enableUploadProgress(value);
value = $au.uploader('uploaderID').enableUploadProgress();
Property Value
Type: Boolean
If true, the uploading files dialog is displayed; otherwise, this dialog is hidden. However, there are alternative ways to indicate the upload progress:
- activate the instant upload mode (i.e. set the uploadSettings.enableInstantUpload is true),
- implement a custom upload progress indicator yourself by using the Progress event.
Default value is true.