moxiecode/plupload

uploader.removeFile for currently uploaded file

yafeearun opened this issue · 2 comments

Hi

i tried to remove uploading file, the removeFile function works well but,uploading not stops,

remove function
$('#' + file.id + ' .remove_file').click(function() {
uploader.removeFile(file);
$('#' + file.id).hide();
});

FilesRemoved : function(up,files){
plupload.each(files, function (file) {
console.log(file, file.state,file.size, plupload.QUEUED);
if ( file.state != plupload.QUEUED ) {
uploader.stop();
uploader.start();
}
});
}

guide me to solve this.

any solution?

Very incredible, I replaced the release version with the source code and it worked

Just apply uploader.removeFile(f)