toggle select all checkbox
This commit is contained in:
parent
5ba9344b0e
commit
79719d9ae5
|
@ -152,6 +152,14 @@ $(document).ready(function() {
|
||||||
$('#fileList').on('click', 'td.filename input', function() {
|
$('#fileList').on('click', 'td.filename input', function() {
|
||||||
var checkbox = $(this).parent().children('input:checkbox');
|
var checkbox = $(this).parent().children('input:checkbox');
|
||||||
$(checkbox).parent().parent().toggleClass('selected');
|
$(checkbox).parent().parent().toggleClass('selected');
|
||||||
|
if ($(checkbox).is(':checked')) {
|
||||||
|
var selectedCount = $('td.filename input:checkbox:checked').length;
|
||||||
|
if (selectedCount === $('td.filename input:checkbox').length) {
|
||||||
|
$('#select_all').prop('checked', true);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$('#select_all').prop('checked',false);
|
||||||
|
}
|
||||||
procesSelection();
|
procesSelection();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue