Text of the message box which notifies that the upload 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("MessageUploadCompleteText", "Upload complete.");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
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.

See Also

Examples
Localization
Adding a Custom Progress Bar

Reference
MessageBoxTitleText Property
MessageCannotConnectToInternetText Property
MessageDimensionsAreTooLargeText Property
MessageDimensionsAreTooSmallText Property
MessageFileSizeIsTooSmallText Property
MessageMaxFileCountExceededText Property
MessageMaxFileSizeExceededText Property
MessageMaxTotalFileSizeExceededText Property
MessageNoInternetSessionWasEstablishedText Property
MessageNoResponseFromServerText Property
MessageRedirectText Property
MessageRetryOpenFolderText Property
MessageServerNotFoundText Property
MessageUnexpectedErrorText Property
MessageUploadCancelledText Property
MessageUploadFailedText Property
MessageUserSpecifiedTimeoutHasExpiredText Property