Dropzone File Upload
Forms / Dropzone File Upload
DROPZONE FILE UPLOAD
Database overload due to incorrect queries
failed to initialize the application due to error weblogic.application.moduleexception
Your setting is updated on server Sav3060
Provide an Overview key mention characteristics for selected Keyword.
Polly Paton has completed his work. please assign her new task.
Alan Installing App v1.2.1 on server Sav3080
Zoey Lombardo like your server installation task.
<form action="assets/plugins/dropzone/upload.php" method="post" class="dropzone" id="my-dropzone"></form>
<!-- JAVASCRIPT CODE -->
loadScript(plugin_path + 'dropzone/dropzone.js', function() {
Dropzone.options.myDropzone = {
init: function() {
this.on("addedfile", function(file) {
// Create the remove button
var removeButton = Dropzone.createElement("<button class='btn btn-sm btn-default fullwidth margin-top-10'>Remove file</button>");
// Capture the Dropzone instance as closure.
var _this = this;
// Listen to the click event
removeButton.addEventListener("click", function(e) {
// Make sure the button click Scarletsn't submit the form:
e.preventDefault();
e.stopPropagation();
// Remove the file preview.
_this.removeFile(file);
// If you want to the delete the file on the server as well,
// you can do the AJAX request here.
});
// Add the button to the file preview element.
file.previewElement.appendChild(removeButton);
});
}
}
});