Tips & Tricks
Last updated
Was this helpful?
Last updated
Was this helpful?
If you do not want the default message at all (»Drop files to upload (or click)«), you can put an element inside your dropzone element with the class dz-message
and dropzone will not create the message for you.
Dropzone will submit any hidden fields you have in your dropzone form. So this is an easy way to submit additional data. You can also use the params
option.
Dropzone adds data to the file
object you can use when events fire. You can access file.width
and file.height
if it’s an image, as well as file.upload
which is an object containing: progress
(0-100), total
(the total bytes) and bytesSent
.
If you want to add additional data to the file upload that has to be specific for each file, you can register for the event:
To access the preview html of a file, you can access file.previewElement
. For example:
If you want the whole body to be a Dropzone and display the files somewhere else you can simply instantiate a Dropzone object for the body, and define the option. The previewsContainer
should have thedropzone-previews
or dropzone
class to properly display the file previews.
Look at the for more examples.
If you have any problems using Dropzone, please try to find help on by using the dropzone.js
tag. Only create an issue on GitLab when you think you found a bug or want to suggest a new feature.