Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't figure out how to modify the jQuery Blueimp fileupload plugin jquery.fileupload-ui.js such that the delete button just deletes the files without having to check the checkbox first.

Might someone help me figure out how to do this?

here's the jquery.fileupload-ui.js code which appears to need some kind of modification:

 fileUploadButtonBar.find('.delete')
            .bind('click.' + ns, function (e) {
                e.preventDefault();
                filesList.find('.delete input:checked')
                    .siblings('button').click();
                fileUploadButtonBar.find('.toggle')
                    .prop('checked', false);
            });
        fileUploadButtonBar.find('.toggle')
            .bind('change.' + ns, function (e) {
                filesList.find('.delete input').prop(
                    'checked',
                    $(this).is(':checked')
                );
            });
share|improve this question

1 Answer

up vote 1 down vote accepted

Ok I fixed my own problem. The solution is just to have the checkboxes attribute set to checked="checked" in the template and HTML before these elements are rendered. Trying to check the checkboxes with Javascript clicking on the button wasn't working for me probably having to do with the call stack.

Anyway, here's the code. In the template-download instead of this:

<input type="checkbox" name="delete" value="1">

do this:

<input type="checkbox" name="delete" value="1" checked="checked">

and for the checkbox next to the delete button in the fileuploadBar, instead of this:

<input type="checkbox" class="toggle">

do this:

<input type="checkbox" class="toggle" checked="checked">

If you do this, then clicking any of the delete buttons will delete the file(s) (i.e., one step instead of two).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.