Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed #11697 - Allow shift clicking for selecting multiple action che…
…ckboxes 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
  • Loading branch information
jezdez committed Jan 9, 2010
1 parent 73d8abf commit 9ec29cf
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -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
Expand Down
22 changes: 20 additions & 2 deletions django/contrib/admin/media/js/actions.js
Expand Up @@ -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';
}
Expand All @@ -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();
});
}
Expand All @@ -28,7 +46,6 @@ var Actions = {
if (target.className == 'action-select') {
var tr = target.parentNode.parentNode;
Actions.toggleRow(tr, target.checked);
Actions.checked();
}
});
}
Expand Down Expand Up @@ -59,6 +76,7 @@ var Actions = {
for(var i = 0; i < counterSpans.length; i++) {
counterSpans[i].innerHTML = counter;
}
selectAll.checked = (counter == actionCheckboxes.length);
}
};

Expand Down

0 comments on commit 9ec29cf

Please sign in to comment.