This property is obsolete.

Switch that specifies whether to display the message when the upload process is successfully finished.

Syntax

Initialize
JavaScript CopyCode imageCopy Code
<script type="text/javascript" src="iuembed.js"></script>
<script type="text/javascript">
var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500);
//...other params...
iu.addParam("ShowUploadCompleteMessage", "true");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setShowUploadCompleteMessage(value);
value = getImageUploader("ImageUploaderID").getShowUploadCompleteMessage();
Property Value

A boolean value (true or false). If true, upload complete message is displayed, otherwise - not.

Default value is "true".

Remarks

If you want to automatically redirect the user to another page when the upload is complete, it makes sense to disable this message box.

NoteNote

This property is obsolete and supported only for the backward compatibility. It is highly recommended to use the MessageUploadCompleteText property instead (just set it to the empty string).

See Also

Reference
MessageUploadCompleteText Property