Reputation: 10886
I´m making a upload function with dropzone (I'm using Laravel). But I can only upload images. This is my dropzone code:
Dropzone.options.myAwesomDropzone = {
maxFilesize: 2,
autoProccessQueue: false,
acceptedFiles: "image/jpeg,image/png,image/gif",
parallelUploads: 30,
dictDefaultMessage: 'Sleep hier uw bestanden in, of klik op mij.'
};
How can I make sure that pdf,docx etc. also can be uploaded?
Thanks
--EDIT--
Dropzone.options.myAwesomDropzone = {
maxFilesize: 2,
autoProccessQueue: false,
acceptedFiles: "image/jpeg,image/png,image/gif,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
parallelUploads: 30,
dictDefaultMessage: 'Sleep hier uw bestanden in, of klik op mij.'
};
Upvotes: 0
Views: 538
Reputation: 180014
Add the file types you wish to allow to the acceptedFiles
setting.
Upvotes: 2