We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d121de9 commit 644b2a1Copy full SHA for 644b2a1
src/Dropzone/CHANGELOG.md
@@ -1,8 +1,8 @@
1
# CHANGELOG
2
3
-## 2.31
+## 2.32
4
5
-- Support for multiple files drag and drop and peviews
+- Add support for multiple files upload
6
7
## 2.30
8
src/Dropzone/doc/index.rst
@@ -55,6 +55,18 @@ replacement of the native FileType class::
55
// ...
56
}
57
58
+To enable multiple uploads, you can configure it in buildForm method adding "multiple" boolean option::
59
+
60
+ // ...
61
+ ->add(
62
+ 'photo',
63
+ DropzoneType::class,
64
+ [
65
+ 'multiple' => true, // Allow multiple file uploads
66
+ ]
67
+ )
68
69
70
Customizing the design
71
~~~~~~~~~~~~~~~~~~~~~~
72
0 commit comments