Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I disable dropzone's automatic file upload?

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?

like image 375
David says Reinstate Monica Avatar asked Apr 14 '16 18:04

David says Reinstate Monica


1 Answers

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.

like image 163
Adam Avatar answered Sep 21 '22 11:09

Adam