I have a modal with a DropZone within it. I can select images and save their links into a table. I’m now trying to figure out how to place the images into my Dropzone. On my page I have a record to display, then I can click on the modal with the dropzone.What I’m working on is to be able to read the image table get the one or many records associated and display the image in the Dropzone.
Any suggestions? Maybe not use the Dropzone to begin with?
Ed
Hello Ed
The dropzone works like a regular file input. You cannot change/set the value of a file input like that (via scripts), as browsers don’t allow this for security reasons.
I.e. it’s not possible to show the thumbnails of the images, returned by your database query inside the dropzone. You can just list them below, in some repeat region.
Dropzone will only show files dropped there by the user.