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

ImageUploader.MessageUploadCompleteText Property

Supported in: ActiveX , Java

Text of the message box which notifies that the upload is successfully finished.

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("MessageUploadCompleteText", "Upload complete.");
//...other params...
iu.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getImageUploader("ImageUploaderID").setMessageUploadCompleteText(value);
value = getImageUploader("ImageUploaderID").getMessageUploadCompleteText();

Property Value

A string value that specifies a text of the message box which notifies that the upload is successfully finished. To disable this message, set it to an empty string.

Default value is "Upload complete.".

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 (i.e. set this property to an empty string).

This property is necessary for localization of Image Uploader.

Note

If you want to specify a multiline text use the "\n" sequence to separate lines.

See Also

Manual

Reference