0

I'm playing with FileDrop library, to allow users to upload multiple files "one-shot" with IE11. As documented, setting this property

zone.multiple(true);

is possible to select multiple files to be uploaded.

I noticed this strange behaviour.

If I download the sample package, setting the multiple property into filedrop.js and run it locally (open basic.html file whith IE) everything works fine.

If I put the same HTML code into an HTML form in Lotus Domino, multiple selection doesn't work.

I repeat, it only happens with IE, using other browser everything is ok.

Which could be the problem? Any workaround to make it works?

UPDATE:

Note that this page, with IE, works fine, and multiple selection is allowed.

Andrea Baglioni
  • 303
  • 1
  • 2
  • 20

1 Answers1

0

The trick is to add

<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\">

into <head> section of the form

Andrea Baglioni
  • 303
  • 1
  • 2
  • 20