dropzone.js Questions

5

Solved

I use jQuery to work with dropzone. e.g. $("#mydropzone").dropzone({ /*options*/ }); I need to get the Dropzone instance so I can call this method: myDropzone.processQueue() How can I achieve...
Prevost asked 8/4, 2015 at 14:42

6

Solved

I am trying to create an app with a CSV upload. When a CSV is uploaded it will change the state and then I will parse from CSV to JSON and do stuff with it. The idea is to upload a file and update ...
Lass asked 13/4, 2016 at 3:1

4

Solved

I'm trying to combine DropZoneJS (found here) and JavascriptLoadImage (found here) to create a solution where a user can drag-drop a file to upload, and based on the EXIF metadata information in th...
Overeager asked 31/3, 2014 at 15:17

3

I am using dropzone.js. I want to implement the "Copy & Paste" feature in it. What I tried is: Inside dropzone.js: paste: function(e) { Dropzone.prototype.emit("paste"); } Dropzone.prototy...
Subjectify asked 10/9, 2015 at 5:19

8

I am trying to add dropzone.js and I'd like to pass another parameter with file, so I put hidden input in form . I can upload file and can read it in Java part but I can't read type_chooser, ---...
Champerty asked 30/5, 2014 at 14:26

3

Is anyone used dropzone Js library with angular 2 or 4 before ? and if there is some useful examples or links thanks
Reimers asked 26/8, 2017 at 19:20

2

Solved

I'm trying to upload "large" files to my application. Users must be able to upload video files smallest than 200MB but seem the server drops the connections after 4MB or 30 seconds and the upload f...
Entanglement asked 23/9, 2017 at 13:7

6

Solved

I am using the dropzone.js plugin to add an image uploader to my application. I know this is probably a really basic question so apologies but what I want to do is limit the file extensions. This w...
Skidmore asked 9/6, 2013 at 17:6

3

Solved

I'd like to access a VueJS variable from the success Dropzone event callback. All the code is OK, DropzoneJS & VueJS work fine together, but my variable photos is not accessible in the success ...
Gladden asked 2/3, 2017 at 14:35

2

How do I change the thumbnail size of uploaded images? I have tried thumbnailWidth:"350" in my javascript, However that does not increase the thumbnail size, rather the thumbnail just looks zoomed ...
Granulite asked 19/1, 2015 at 18:59

1

I'm using dropzone in one single page. In fact, user can add dynamically one object that contains DropZone for instance one City can have N houses and for each house, I let the user send files trou...
Captivity asked 7/12, 2017 at 13:50

2

Solved

I am using dropzone.js in magento to upload files. the progress bar is working fine but i want to show the progress percentage too. Following function is adding style to a span. uploadprogress: fu...
Connivance asked 27/7, 2016 at 18:30

3

Solved

I have to use dropzone.js form, which sends a couple of inputs and a file upload info to the other page. My dropzone code looks like this -- > Dropzone.options.mydropzone = { maxFiles: 1, maxF...
Mcqueen asked 4/3, 2014 at 19:46

3

Dropzone.options.imageFile = { url: HOST_NAME + USER_NAME + BUILDER_API +'image/', method: 'POST', // enter code here acceptedFiles: '.jpg, .jpeg, .png', paramName: "imagefile", // The name th...
Arty asked 11/2, 2014 at 12:59

3

Probably a CSS issue, but when I create a dropzone box programmatically I get the checkmark and x icons as well as other text after it finishes (see linked image). <div id="header-dropzone">...
Thoracotomy asked 21/8, 2015 at 5:8

1

Solved

I used dropzone as CSV/XLS file uploader. I use this option to filter and restrict CSV/XLS file: acceptedFiles: "text/csv,application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spr...
Hausa asked 24/7, 2018 at 12:58

3

I am working on a project that has an API layer which is running Laravel Passport. I have added the createFreshApiToken to my application and all of my jQuery ajax requests are working just fine. ...
Eared asked 15/3, 2017 at 17:2

3

Solved

So, I tried following the solution here: Dropzone image upload options not working :( but, whenever I provide the option: Dropzone.autoDiscover = false; the dropzone goes from displaying the defau...
Ret asked 27/4, 2015 at 14:23

5

Solved

I want to change the generic greyed out background for word/pdf files in dropzone file preview. This is the default view: Which is the best way to do it?
Craner asked 5/8, 2015 at 18:41

4

Solved

I'm using Dropzone.js to upload files. Now I want to check a filed is filled or not, and if it isn't then cancel the upload. My HTML code: <input type="text" name="title" id=...
Franchescafranchise asked 23/5, 2014 at 12:58

6

I have implemented a dropzone page using http://www.dropzonejs.com/ I am having trouble with the resize functionality. My images are constantly cropped if they are of the wrong aspect ratio. I am...
Navaho asked 30/3, 2014 at 4:6

9

Solved

I am using dropzone.js for my drag-drop file upload solution. I am stuck at something where I need to call a function after all the files are uploaded. In this case, Dropzone.options.filedrop = { ...
Rhyme asked 8/6, 2013 at 10:13

1

Solved

I can find plenty of documentation on how to use the chunked file upload with various API's and libraries, but I am unable to find how to use Dropzone.js chunked file upload with just plain PHP. T...
Marginalia asked 17/5, 2018 at 17:9

2

Solved

The problem I am having is that the List of IFormFile is not being populated with the given files but when i call HttpContext.Request.Form.Files; then I have access to the files. I would prefer to ...
Adachi asked 28/3, 2018 at 8:58

2

Solved

I'm using Dropzonejs to upload files to use in my module. The way it works is you edit an item, you drag a file to the dropzone, the dropzone hides and you see a preview of the image. That preview ...
Formfitting asked 24/4, 2018 at 7:31

© 2022 - 2024 — McMap. All rights reserved.