Closed biosis21 closed 9 years ago
You should be change in formDataTransform factory this snippet: var files = []; angular.forEach(value, function (el) { angular.forEach(el.files, function (file) { files.push(file); }); }); to var files = []; angular.forEach(value, function (el) { angular.forEach(el.files, function (file) { files.push(file); }); el.value =''; });
Please submit a pull request
Solutions: document.getElementById("input_file_id").value = ""; or $("#input_file_id").val('')