Switch that indicates whether the file list will be displayed expanded by default.
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var fd = new FileDownloaderWriter("FileDownloaderID", 610, 500); //...other params... fd.addParam("FileListExpanded", "false"); //...other params... fd.writeHtml(); </script>
getFileDownloader("FileDownloaderID").setFileListExpanded(value); value = getFileDownloader("FileDownloaderID").getFileListExpanded();
A boolean value (true
or false
). If true
, the file list will be displayed expanded at the bottom of the confirmation dialog by default. If false
, the user will have to click the Show File List button to review the file list.
Default value is "false".