I have setup a form on a rails site that I am developing and I configured the jquery file upload plugin. The upload form works fine. Multiple files can be chosen and all the ajax upload functionality works fine.
The issue I am having is that I need to provide a way for the user to "unstage" files that they have chosen to upload. The way I have the plugin setup it allows the user to chose or drag and drop files, when the files are added to the form they are added to a staging area (see below). What I need to do is allow the user "unstage" or remove the files from the form.
Basically I need a way of accessing and removing the files referenced in the jquery file upload form.
I am using the basic jquery file upload plugin without all the optional scripts that come with jquery file upload. Here is a link to the jquery file upload repo: https://github.com/blueimp/jQuery-File-Upload

Here is the JavaScript that configures the jquery file upload plugin (this code is wrapped in a document ready function):
// initalize and configure the jQuery File Uploader
$('#fileupload').fileupload({
uploadTable: $('.file-upload-list'),
downloadTable: $('#photo'),
dropZone: dropZone,
sequentialUploads: true,
autoUpload: false,
maxFileSize:10000000,
dataType: 'text',
... some code removed
// when the user drags a file into the upload area
drop: function (e, data) {
$('.file-upload-table').show();
$.each(data.files, function (index, file) {
$('.file-upload-list').append('<li>' + file.name + '<a href="" class="close cancel"></a></li>');
});
autoResizeColorbox();
},
// when the user selects a file normally
change: function (e, data) {
$('.file-upload-table').show();
$.each(data.files, function (index, file) {
$('.file-upload-list').append('<li>' + file.name + '<a href="" class="close cancel"></a></li>');
});
autoResizeColorbox();
},
... some code removed
});
Any help is greatly appreciated.