i am using Dropzone js for file uploading. I want to display the uploading percentage with progress bar. I know the Dropzone js is not supporting to display the percentage by default.
show i define the code for get the progress value and try to show in class .dropzone-progress-total. This class is not get anything yet. can anybody tell how can i get the percentage and display it?
html
<div class="dropzone-percentage">
<span class="dropzone-progress-total"></span>
</div>
js
// Update the total progress bar
myDropzone.on("totaluploadprogress", function (progress) {
$(this).find(id + " .progress-bar").css("width", progress + "%");
$(this).find(id + " .dropzone-progress-total").text(progress + "%"); // this line is not working
});