bootstrap
bootstrap copied to clipboard
Multiple file inputs (image)
I want to add multiple file/image inputs in a form, but when i add one image, all of the other previews shows the first image. Can i make them separate?
or maybe only count total files uploads (?)
@tobiaslindgreen Sorry for big wait) I do not see such a behaviour. Image is added to single file input, not to all. If you still experience a problem, can you create an example in jsfiddle?
I have the same question as @tobiaslindgreen.
With <input type="file" name="..." multiple>
we can allow for more files to be uploaded, but if only the first image thumb shows, it's still not very useful.
How do we show all uploaded previews, with edit/remove button each? @jasny @Minstel
We can show multiple files, just need a nice design.
Removing individual items isn't possible without having to upload via AJAX since you can't modify the value of a <input type="file">
element.