mirror of
https://github.com/django/django.git
synced 2024-12-22 17:16:24 +00:00
Fixed #11697 - Allow shift clicking for selecting multiple action checkboxes in the admin changelist. Thanks buriy and Sean Brant.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12155 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
73d8abf3d5
commit
9ec29cf1dc
1
AUTHORS
1
AUTHORS
@ -78,6 +78,7 @@ answer newbie questions, and generally made Django that much better:
|
||||
Matt Boersma <matt@sprout.org>
|
||||
boobsd@gmail.com
|
||||
Matías Bordese
|
||||
Sean Brant
|
||||
Andrew Brehaut <http://brehaut.net/blog>
|
||||
brut.alll@gmail.com
|
||||
btoll@bestweb.net
|
||||
|
@ -4,6 +4,7 @@ var Actions = {
|
||||
counterContainer = document.getElementsBySelector('span.action_counter');
|
||||
actionCheckboxes = document.getElementsBySelector('tr input.action-select');
|
||||
selectAll = document.getElementById('action-toggle');
|
||||
lastChecked = null;
|
||||
for(var i = 0; i < counterContainer.length; i++) {
|
||||
counterContainer[i].style.display = 'inline';
|
||||
}
|
||||
@ -15,7 +16,24 @@ var Actions = {
|
||||
});
|
||||
}
|
||||
for(var i = 0; i < actionCheckboxes.length; i++) {
|
||||
addEvent(actionCheckboxes[i], 'click', function() {
|
||||
addEvent(actionCheckboxes[i], 'click', function(e) {
|
||||
if (!e) { var e = window.event; }
|
||||
var target = e.target ? e.target : e.srcElement;
|
||||
if (lastChecked && lastChecked != target && e.shiftKey == true) {
|
||||
var inrange = false;
|
||||
lastChecked.checked = target.checked;
|
||||
Actions.toggleRow(lastChecked.parentNode.parentNode, target.checked);
|
||||
for (var i = 0; i < actionCheckboxes.length; i++) {
|
||||
if (actionCheckboxes[i] == lastChecked || actionCheckboxes[i] == target) {
|
||||
inrange = (inrange) ? false : true;
|
||||
}
|
||||
if (inrange) {
|
||||
actionCheckboxes[i].checked = target.checked;
|
||||
Actions.toggleRow(actionCheckboxes[i].parentNode.parentNode, target.checked);
|
||||
}
|
||||
}
|
||||
}
|
||||
lastChecked = target;
|
||||
Actions.counter();
|
||||
});
|
||||
}
|
||||
@ -28,7 +46,6 @@ var Actions = {
|
||||
if (target.className == 'action-select') {
|
||||
var tr = target.parentNode.parentNode;
|
||||
Actions.toggleRow(tr, target.checked);
|
||||
Actions.checked();
|
||||
}
|
||||
});
|
||||
}
|
||||
@ -59,6 +76,7 @@ var Actions = {
|
||||
for(var i = 0; i < counterSpans.length; i++) {
|
||||
counterSpans[i].innerHTML = counter;
|
||||
}
|
||||
selectAll.checked = (counter == actionCheckboxes.length);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user