YII2 DROPZONE NOT DISPLAYING

 


The first time I used Yii2 Dropzone by perminder-klair, it doesn’t display anything.

You can check the widget here: https://github.com/perminder-klair/yii2-dropzone

Here’s a solution I found:

Go to vendor/perminder-klair/dropzone/assets/DropZoneAssets.php
change

public $js = [
        "dropzone/dist/min/dropzone.min.js"
    ];

to

public $js = [
        "dropzone/dist/dropzone.js"
    ];

now open dropzone.js and change
Dropzone.autoDiscover = true;
to
Dropzone.autoDiscover = false;

Now, it displays text and can upload files.

dropzone

uploaded_file.png

Post a Comment

0 Comments