Text of the message box which notifies that the upload is successfully finished.
<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>
getImageUploader("ImageUploaderID").setMessageUploadCompleteText(value); value = getImageUploader("ImageUploaderID").getMessageUploadCompleteText();
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.".
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.
If you want to specify a multiline text use the "\n"
sequence to separate lines.