Text string which appears in the progress dialog when the upload completes and Image Uploader is waiting for a response from the server.

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("ProgressDialogWaitingForResponseFromServerText", "Waiting for response from server...");
//...other params...
iu.writeHtml();
</script>
Get/Set Value in Runtime
JavaScript CopyCode imageCopy Code
getImageUploader("ImageUploaderID").setProgressDialogWaitingForResponseFromServerText(value);
value = getImageUploader("ImageUploaderID").getProgressDialogWaitingForResponseFromServerText();
Property Value

A string value that specifies a text displayed on a progress dialog when upload is finished and Image Uploader is waiting for a response from server.

Default value is "Waiting for response from server...".

Remarks

This property is necessary for localization of Image Uploader.

See Also

Examples
Localization

Reference
ProgressDialogCancelButtonText Property
ProgressDialogCloseButtonText Property
ProgressDialogCloseWhenUploadCompletesText Property
ProgressDialogEstimatedTimeText Property
ProgressDialogPreparingDataText Property
ProgressDialogPreviewThumbnailSize Property
ProgressDialogSentText Property
ProgressDialogTitleText Property
ProgressDialogWaitingForRetryText Property
ProgressDialogWidth Property