dropzone.js Suppress progress bar when retrieving from server
Make sure that there is no progress bar, etc...
thisDropzone.emit("complete", mockFile);
FAQ Dropzone.JS
This is an old question but I had the same issue. My solution was to edit my .css file:
.dz-progress {
/* progress bar covers file name */
display: none !important;
}