JFile has the capability to easily upload multiple files. However, when a user chooses to add files, if UseNativeFileSelection is enabled, a file selector dialog will open which only allows the user to choose one file at a time and add it to the control. Holding CTRL or SHIFT will have no effect. The reason for this is an inherent limitation in the User Interface classes provided with the Java AWT API. At this time, most browsers only support Java AWT, and therefore JFile is built upon this API.
To compensate for the inherent limitations in the Java classes supported by the browser, JFile offers our own powerful platform-neutral file selector which allows for selection of multiple files and folders as well as the application of one or more filters. For more information about JFile's customizable non-native File Selector, see the JFile documentation at http://support.softartisans.com/docs/sajfiledocs/default.asp. Look at Programmer's Documentation > Programmer's Reference > File Selector Parameters. |