FileDownloader.DownloadCompleteDialogText Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Main message of the Download Completed dialog.

Syntax

Initialize

JavaScript
<script type="text/javascript" src="iuembed.js">  </script>
<script type="text/javascript">
var fd = new FileDownloaderWriter("FileDownloaderID", 610, 500);
//...other params...
fd.addParam("DownloadCompleteDialogText", "Download has been completed. Click Show Log button to see the log file");
//...other params...
fd.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getFileDownloader("FileDownloaderID").setDownloadCompleteDialogText(value);
value = getFileDownloader("FileDownloaderID").getDownloadCompleteDialogText();

Property Value

A string value that specifies a main message text of the Download Completed dialog.

If an empty string is provided as a value, the dialog will not be displayed.

Default value is "Download has been completed. Click Show Log button to see the log file".

Remarks

This property is necessary for localization of File Downloader.

See Also

Reference