I have been using Dropzone UI (DZ) component successfully until recently. Over the past couple of weeks, DZ has stopped actually performing upload of the selected file(s). I have tried to backtrack to se if any of my recent changes have caused this, but I have not been able to restore upload functionality. I have also reloaded the component from Martketplace, but no change. AppID = DEC6B808-645B-7B62-FF97-8D7C3B617700 page=landing01
Hello @Richard_Munger
As far as I see the problem occurs when using such a block
In the the On Upload Event you try to get “catid” property from non-existent object.
Regards
After your observation, I placed a check in the upload event to ensure that a category/catid was selected and populated prior to the upload action. The Filename event did not fire prior to this change and it still does not fire. In the “onUpload” event, the catid IS populated but the file content never gets saved to the target folder.
=01= DZ = filesUploadedTotal=1
=01= DZ = filename=blank-torn-page-1219527145.jpg
=01= DZ = adj filename=682_27_blank-torn-page-1219527145.jpg
=01= DZ = FILE={}
Hello @Richard_Munger,
The file is not uploading because you have overridden the logic in the onUpload
handler. You’ll need to add custom logic for saving the file, or move your existing logic elsewhere and remove this handler. This will allow the file to save correctly.
Regards,
Alexander
Thank you. Sometimes we are too close to the forest to see the trees.