Switch that indicates whether a dialog notifying about the download completion should be displayed.
<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>
getFileDownloader("FileDownloaderID").setShowDownloadCompleteDialog(value); value = getFileDownloader("FileDownloaderID").getShowDownloadCompleteDialog();
A boolean value (true
or false
). If true
, File Downloader will display a dialog notifying about the download completion.
Default value is "true".
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.