mirror of
https://github.com/django/django.git
synced 2025-08-21 11:10:38 +00:00
Fixed #9341: add another on ManyToManyField
s with raw_id_admins
now works correctly.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10452 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7d1b4295b9
commit
6eaf154a2e
1 changed files with 5 additions and 1 deletions
|
@ -79,8 +79,12 @@ function dismissAddAnotherPopup(win, newId, newRepr) {
|
||||||
elem.options[elem.options.length] = o;
|
elem.options[elem.options.length] = o;
|
||||||
o.selected = true;
|
o.selected = true;
|
||||||
} else if (elem.nodeName == 'INPUT') {
|
} else if (elem.nodeName == 'INPUT') {
|
||||||
|
if (elem.className.indexOf('vManyToManyRawIdAdminField') != -1 && elem.value) {
|
||||||
|
elem.value += ',' + newId;
|
||||||
|
} else {
|
||||||
elem.value = newId;
|
elem.value = newId;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
var toId = name + "_to";
|
var toId = name + "_to";
|
||||||
elem = document.getElementById(toId);
|
elem = document.getElementById(toId);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue