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

ImageUploader.ProgressDialogPreviewThumbnailSize Property

Supported in: ActiveX , Java

Size of a thumbnail in the progress dialog.

Syntax

Initialize

JavaScript
<script type="text/javascript" src="iuembed.js">  </script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("ProgressDialogPreviewThumbnailSize", "96");
//...other params...
iu.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getImageUploader("ImageUploaderID").setProgressDialogPreviewThumbnailSize(value);
value = getImageUploader("ImageUploaderID").getProgressDialogPreviewThumbnailSize();

Property Value

A positive integer value that specifies size of a thumbnail in the progress dialog. This value should be in range [50, 400]. If it equals to 0, no thumbnail is displayed in the progress dialog.

Default value is "96".

See Also

Reference