Reputation: 20129
I want to use dropzone to allow users to drag and drop file in, but I don't want dropzone to actually upload the files at any point. How do I disable this functionality in dropzone?
Upvotes: 17
Views: 21825
Reputation: 2666
Check out the autoProcessQueue setting in dropzone config
When set to false you have to call myDropzone.processQueue() yourself in order to upload the dropped files.
Upvotes: 26