Reputation: 7521
I am building a form in which users can choose to upload multiple files using Dojo 1.8. I have the following code snippit that, when placed in a form, allows multiple file uploads for Chrome and Firefox:
var u = new dojox.form.Uploader({
label: "Browse",
multiple: true,
uploadOnSelect: false,
url: 'upload'
});
However, it is well-documented that IE9 does not support this feature of dojox.form.Uploader. Is there a workaround that would allow Internet Explorer users to upload multiple files?
Upvotes: 0
Views: 304
Reputation: 19890
IE9 and earlier do not support the multiple
attribute on file input elements. So, there is no way to select multiple files in one pass without resorting to Flash or Java.
Upvotes: 1