Here is the thing,
I want cancel button similar to Basic plus UI or jQuery UI in Basic. This question might look silly to you. But actually i got confus
You can add an "upload" and "cancel" button to every file and bind the submit function on these buttons.
var cancel_btn = $('')
.addClass('btn btn-warning cancel pull-right')
.html(' Cancel')
var upload_btn = $('')
.addClass('btn btn-warning upload pull-right')
.html(' Upload')
});
$('#submit').on('click',function(){
$('.upload').click() //click upload buttons and upload all files in the queue
})
$('#cancel').on('click',function(){
$('.cancel').click() //click cancel buttons and remove all files in the queue
})
.......
$('#files_list tbody').append(tr);
$(td4).append(upload_btn.clone(true).data(data));
$('.upload').eq(-1).on('click',function(){//button to upload only this file
data.submit();
})
$('.cancel').eq(-1).on('click',function(){
$(this).parent().parent().remove()//or something like this,
//delete the whole
//and remove the file from the queue
})
讨论(0)
- 热议问题