droppablefileupload
Reactive icon

DroppableFileUpload

Stable version 1.0.0 (Compatible with OutSystems 11)
Uploaded
 on 07 May 2020
 by 
4.2
 (6 ratings)
droppablefileupload

DroppableFileUpload

5 star
2
0 Reviews |  2 Ratings
4 star
3
1 Review |  3 Ratings
3 star
1
0 Reviews |  1 Rating
2 star
0
0 Reviews |  0 Ratings
1 star
0
0 Reviews |  0 Ratings
6
Ratings
4.2
2
Reviews
by 
2022-12-20
in version 1.0.0
Very good component. To make the component much better you should make a new version and define the drop-area in dynamic way.
by 
2022-05-13
in version 1.0.0
It works really well, however there are some things on the code that could be improved. The JavaScript on the OnReady function defines the ID of the hidden input associated to the droppable file area in a non-dynamic way meaning that if there are several droppable file areas on a single page they will all share the same id. This is dangerous since the code relies on the id to provide some actions and with repeated ids this means that the code can malfunction. Also on the same JavaScript there is the usage of the action Document.querySelector() to look for an element on the page via the class but similar to the id part it's non-dynamic meaning that if there are several file upload areas on the same screen it will malfunction.