kels
kels

Reputation: 175

Multiple files with Filepicker

How can I select multiple files at once with filepicker.io? I can only find examples selecting one file at a time.

Upvotes: 4

Views: 3992

Answers (1)

jlg_foil
jlg_foil

Reputation: 668

There are two ways of doing it.

If you are using the widgets, then set data-fp-option-multiple="true" (Note that it is the string true)

If you are using the javascript library, then set {'multiple': true} in the options.

Both examples in code: http://jsfiddle.net/yQJcL/

Upvotes: 5

Related Questions