DropzoneJS is an open source library that provides drag'n'drop file uploads with image previews. It is lightweight, does not depend on any other library (like jQuery)
Questions tagged [dropzone]
494 questions
0
votes
1 answer
Dropzone with draggable area and input in different locations
I'm trying to use Dropzone in my application to enable drag and drop upload. The problem is: I can't upload the file at the time I select a file, I need to wait the user click on 'Submit' on entire form (I don't have a form only to file upload) to…

jonatasdaniel
- 183
- 3
- 11
0
votes
1 answer
Dividing Up CodeIgniter Multi-File DropZone Uploader Code into MVC?
I am fairly new to CodeIgniter and I am trying to convert a working DropZone multi-file uploader to the MVC CodeIgniter format. I have seen some other examples here but need to get recommendations for my specific code.
I know how to place the…

12AX7
- 310
- 4
- 14
0
votes
0 answers
Dropzone give response 200 but no images uploaded and no data saved
I was try to upload using Laravel. here's my Add Images Modal:
0
votes
0 answers
Dropzone Large file upload Not Working
I use dropzone to upload files to the database, but there is a bit of a problem.
when I upload a file with a small size it works fine, but when I upload a file above 3 MB it does not work (
dropzone does not provide post value and does not save file…

Zitekno Official
- 9
- 6
0
votes
1 answer
How to get file link for Dropzone multiple upload and add in email template?
I am trying to develop a WordPress plugin which creates a form which first uploads files using Dropzone and then show the form. Once submitted, the form will upload images in stated location and send email to both admin and user. In admin email, it…

kamela Chowdhury
- 15
- 5
0
votes
1 answer
ng-dropzone module does not work in my AngularJS app
I am using ng-dropzone in my AngularJS and following the steps according to its documentation but I get the following error:
TypeError: o is not a constructor
at Object.link…

Hamid Ghorashi
- 1,003
- 3
- 14
- 29
0
votes
0 answers
$scope value in controller is not identified by AngularJS directive
I am trying to use Dropzone module for AngularJs and I have problem applying it to my own code. The module has been defined here but there is no documentation on its usage. Here is what I am doing:
Step 1: Injecting ngDropzone to my…

Hamid Ghorashi
- 1,003
- 3
- 14
- 29
0
votes
0 answers
Dropzone in Codeigniter url not used?
I'm using Dropzone in Codeigniter. I can see in Chrome's Network inspector that the URL is picked up (it sends a request to the URL), but it seems that the upload function in the controller is not executed.
Whatever URL I put in the Dropzone config,…

eskimo
- 2,421
- 5
- 45
- 81
0
votes
1 answer
Uploading file to BrickFTP using Dropzone
I have been trying to implement file upload to BrickFTP using Dropzone, but the uploaded file won't open because it contains the WebKitFormBoundary at the top of the file content.
I'm putting method as PUT in Dropzone configuration as per BrickFTP's…

Atiqur Rahman Sumon
- 73
- 1
- 3
- 8
0
votes
0 answers
resizeQuality function of dropzone.js is not working
I am uploading multiple images but before uploading i want to compress them all at client side and then want to upload to the server for that i am using dropzone.js (programmatically) as below but the function resizeQuality is not working. All…

Mayuresh Patil
- 2,072
- 1
- 21
- 44
0
votes
1 answer
Laravel file upload with dropzone.js
I have a strange issue when trying to upload files with dropzone.js. I wanted to upload all files in public > file-archive folder. If the folder doesn't exist, the request passes fine, though I don't see file uploaded.
public function store(Request…

Norgul
- 4,613
- 13
- 61
- 144
0
votes
1 answer
Unable to pass attached files to controller: 422 Unprocessable Entity
I'm using Dropzone js to handle multiple file uploads. However, the files aren't passed to the controller. After resolving 419 post error by adding the header code for the CSRF token, 422 unprocessable entity error appeared.
Based on the response…

Enovyne
- 195
- 1
- 7
- 20
0
votes
1 answer
Dropzone.js - creating dropzones programmatically returns "dropzone is not a function"
I'm trying to create dropzones programmatically through a function but I receive a element.dropzone is not a function error and I'm not quite sure why. I'm using Vue.js with Element UI
HTML
user4481538
0
votes
0 answers
How to deactivate a div as dropzone
I have three divs with a title and an image in an other, bigger div. I'm trying to drag and drop them around, but if I drop it above an other div they drop in each other. How can I disable de divs with the image as a dropzone?
I worked with…

a.i.00
- 9
- 1
- 7
0
votes
1 answer
Getting actual files to send to backend from dropzone
I am having difficulties grabbing files from Dropzone object (using Vue-Dropzone) and appending them to a custom formData object I am building with other params too.
What I am trying to achive is a form with a Dropzone in it which submits via ajax…

Leon
- 1,262
- 3
- 20
- 41