dropzone.js Questions
1
Solved
I've been trying to rename the filename before the upload in dropzone.js but I'm not able to make it work. This is my configuration:
Dropzone.autoDiscover = false;
Dropzone.options.myAwesomeDropzo...
Yarrow asked 27/4, 2018 at 0:8
1
I think I'm pretty close with this, I have the following dropzone config:
Dropzone.options.myDZ = {
chunking: true,
chunkSize: 500000,
retryChunks: true,
retryChunksLimit: 3,
chunksUploaded: ...
Diagonal asked 11/4, 2018 at 8:13
3
I have this HTML:
<div id='drop_zone'>
<div class="close_button" id="removeAllImages">Remove All</div>
<form action="PHP/uploads.php" class="dropzone" id='fbDropZone'><...
Behrens asked 4/3, 2014 at 10:40
1
Solved
I get the object like that from the front end to my node express server.
{ picture: [ { preview: 'blob:http://localhost:3000/1f413443-83d8-499e-a432-9ac51a2592b7' } ],
name: 'fsdfs',
description...
Pool asked 30/11, 2017 at 13:4
3
Solved
What I m trying to do is get a count of selected files in dropzone before upload them.
var count= myDropzoneNST.getAcceptedFiles().length;
I can get a count of uploaded files using this line, b...
Bellinger asked 28/4, 2015 at 4:18
3
I use dropzone with CI, i don't know how to display error message and custom message when upload false, this is my script
Dropzone.autoDiscover = false;
try {
var myDropzone = new Dropzone("#adm...
Bainbrudge asked 20/11, 2014 at 2:24
7
Solved
I just implemented Dropzone.js to make file uploads on my website easier. The file uploads fine, and after it finished uploading I give the file an id and return this id to the browser.
This works...
Sweetbrier asked 17/10, 2014 at 9:15
5
I want to integrate Dropzone.js with a Client Side Image Resizing. I know that there is a function to resize the thumbnail, but I would like to create a function to resize the main image before upl...
Holsinger asked 12/12, 2013 at 1:12
1
For a project that I am working on in IE11 and Oracle-ADF I am trying to implement DropzoneJS for a drag-and-drop upload feature the client requested.
Oracle-ADF exposes a Javascript API (AdfFileU...
Anonym asked 14/2, 2018 at 15:23
2
I've followed the Combine Dropzone With Normal Form tutorial to allow Dropzone uploads & form submit. The form is an application form, which should work both with & without files added. Cur...
Thousandth asked 29/4, 2014 at 20:37
3
Solved
I have a react.js redux-form that works and posts data back to my API but I need to also allow the submitter to upload an image with the form, ideally with a preview. I struggled a bit and have arr...
Pearson asked 6/1, 2018 at 5:39
2
I'm trying to use dropzone in laravel project but I can't get the files in server side.
My blade html code:
{!! Form::open(['id' => 'create-intervention-form', 'url' => '/create-interventio...
Foraminifer asked 12/1, 2018 at 17:0
1
I'm using the Dropzonejs plugin. I want to check the image dimension (width and height) and also the file size when a file is uploaded. I managed to check the dimension and file size but when I com...
Distich asked 3/8, 2016 at 8:4
2
I'm currently using dropzone.js to upload images to S3 with a presigned URL. Everything works except I am unable to set the content-type of the file being uploaded. By default they are all being up...
Ced asked 16/11, 2017 at 20:58
1
Solved
There are few dropzones on a page and new items are loaded by ajax, so I need to check, if dropzone already attached on that item.
Dropzone.autoDiscover = false;
function initDropzones()
{
...
Lozano asked 1/11, 2016 at 12:9
3
Currently, I adopt Carrierwave for users to images.
However, I hardly find a solution for image security, i.e. how to set image authorisation for the uploaded images to only let certain user in th...
Calves asked 27/4, 2015 at 6:31
5
Solved
I have really no idea where the problem resides to be honest.
Might be Dropzone, Laravel (5.4), ... So I truly hope even a thought might help me get past this problem.
When I upload files, I don'...
Rabbinate asked 4/9, 2017 at 7:43
3
In Dropzonejs i am creating delete button and then appending it to thumbnails, how can i link url which i am geeting from server directly to remove button by using addRemoveLinks:true ,
//Write fu...
Darciedarcy asked 16/6, 2014 at 7:3
3
HTML
<div class="dz dz-clickable dz-started">
<div id="design-image" class="dropzone"></div>
</div>
jQuery
Dropzone.autoDiscover = false;
$("div#design-image").dropzone...
Lashelllasher asked 6/8, 2016 at 10:39
1
Solved
I am currently trying to implement dropzone.js Doc Ref - into my application. But since i've managed to run the basic functionallity of dropzone.js
I want to customize the preview-template to hide...
Selfpreservation asked 14/7, 2017 at 11:24
3
Solved
I've been using dropzone.js in some projects recently and configuring options without no problem, but in a new project I was using a recent version of jQuery (3.1.0) auto-installed by Zend Framewor...
Vann asked 6/10, 2016 at 7:42
3
I am confused about something.
I am trying to use the dropzone.js meteor package (http://atmospherejs.com/dbarrett/dropzonejs) with my meteor application but I could not find any example about it....
Hutton asked 26/8, 2014 at 14:31
3
Solved
So I have my implementation of this tutorial here: http://www.dropzonejs.com/bootstrap.html
It is working great, and I'm uploading files just fine. What I want to do now is be able to send a user ...
Necaise asked 20/10, 2014 at 18:58
1
Solved
From React dropzone, i receive a File object with a File.preview property whose value is a blob:url. i.e. File {preview: "blob:http://localhost:8080/52b6bad4-58f4-4ths-a2f5-4ee258ba864a"
Is there ...
Dicky asked 3/5, 2017 at 9:22
2
Solved
I have used the below code the image has been deleted but the thumbnail image still showing.
Dropzone.options.myDropzone = {
init: function() {
this.on("success", function(file, response) {
fi...
Halinahalite asked 15/10, 2013 at 7:21
© 2022 - 2024 — McMap. All rights reserved.