FileDownloader.ShowDownloadCompleteDialog Property

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Switch that indicates whether a dialog notifying about the download completion should be displayed.

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("ShowDownloadCompleteDialog", "true");
//...other params...
fd.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getFileDownloader("FileDownloaderID").setShowDownloadCompleteDialog(value);
value = getFileDownloader("FileDownloaderID").getShowDownloadCompleteDialog();

Property Value

A boolean value (true or false). If true, File Downloader will display a dialog notifying about the download completion.

Default value is "true".

Remarks

If an empty string is provided as a value of the P:FileDownloader.DownloadCompleteDialogText property, this dialog will not be displayed regardless to the value of this property.

See Also

Reference