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;
toDropzone.autoDiscover = false;
Now, it displays text and can upload files.
0 Comments