Description: |
UseNativeFolderSelection and JFile's User Interface
When PopupFolderSelection is set to 1, JFile will
automatically open a folder selection dialog, prompting the user to select a destination folder before downloading.
By default, JFile will open a native system dialog. To display a platform-neutral file selection dialog box, set
UseNativeFolderSelection to 0:
<param name="UseNativeFolderSelection" value="0">
UseNativeFolderSelection and a Scripted User Interface
If you hide JFile's download interface
(see HideFileList) to create your
own interface, you can use UseNativeFolderSelection with
HiddenFolderSelectionBox to
control the display of the pop-up folder selector window.
Parameter Settings |
Behavior |
<param name="UseNativeFolderSelection" value="1">
<param name="HiddenFolderSelectionBox" value="0"> |
After the download button is clicked, a pop-up folder selection dialog
will not open, but a confirmation box will be displayed after download. |
<param name="UseNativeFolderSelection" value="1">
<param name="HiddenFolderSelectionBox" value="1"> |
After the download button is clicked, a pop-up system folder selection dialog
will open, and a confirmation box will be displayed after download. |
<param name="UseNativeFolderSelection" value="0">
<param name="HiddenFolderSelectionBox" value="0"> |
After the download button is clicked, JFile's folder selector
will open, and a confirmation box will be displayed after download. |
<param name="UseNativeFolderSelection" value="0">
<param name="HiddenFolderSelectionBox" value="1"> |
After the download button is clicked, a pop-up folder selection dialog
will not open, but a confirmation box will be displayed after download. |
|
When a download is scripted (i.e., when
HideFileList is set to 1), JFile will
always display a confirmation
dialog asking the user if he or she agrees to transfer the file. To prevent
the display of this dialog, you must sign the applet or use an unsigned applet.
See Signing Applets for more information. |
|
|