I have used dropzone to upload multiple pictures to my server with drag and drop. First I select all my pictures and then when I want to upload, I press button and all files are uploaded.
I want to change order they are uploaded, and I am using this tips Is there a way to do drag-and-drop re-ordering of the preview elements in a dropzone.js instance? and I can change order with mouse drag.
The problem is that when I upload pictures are not uploaded in order I have changed, but they are uploaded as I have initially put them in dropzone.
My dropzone is configured as this
autoProcessQueue: false,
uploadMultiple: true,
parallelUploads: 3,
clickable: ".add",
previewsContainer: "#previews",
maxFiles: 5,