FileDownloader.DownloadConfirmationDialogServerNameRemarkText Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Text label introducing a download server name in the confirmation 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("DownloadConfirmationDialogServerNameRemarkText", "You are about to download files from the server:");
//...other params...
fd.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getFileDownloader("FileDownloaderID").setDownloadConfirmationDialogServerNameRemarkText(value);
value = getFileDownloader("FileDownloaderID").getDownloadConfirmationDialogServerNameRemarkText();

Property Value

A string value that introduces a download server name in the confirmation dialog.

Default value is "You are about to download files from the server:".

Remarks

The name of the server itself is not included into this string. Instead, the server name is appended to the string in run-time. This is done to prevent phishing.

This property is necessary for localization of File Downloader.

See Also

Reference