mirror of https://github.com/django/django.git
Fixed #1404 (thanks, Tom Tobin)
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2413 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
250281361d
commit
3723f83798
|
@ -29,12 +29,20 @@ function showAddAnotherPopup(triggeringLink) {
|
|||
function dismissAddAnotherPopup(win, newId, newRepr) {
|
||||
var name = win.name.replace(/___/g, '.')
|
||||
var elem = document.getElementById(name);
|
||||
if (elem.nodeName == 'SELECT') {
|
||||
if (elem) {
|
||||
if (elem.nodeName == 'SELECT') {
|
||||
var o = new Option(newRepr, newId);
|
||||
elem.options[elem.options.length] = o
|
||||
elem.selectedIndex = elem.length - 1;
|
||||
} else if (elem.nodeName == 'INPUT') {
|
||||
elem.value = newId;
|
||||
}
|
||||
} else {
|
||||
var toId = name + "_to";
|
||||
elem = document.getElementById(toId);
|
||||
var o = new Option(newRepr, newId);
|
||||
elem.options[elem.options.length] = o
|
||||
elem.selectedIndex = elem.length - 1;
|
||||
} else if (elem.nodeName == 'INPUT') {
|
||||
elem.value = newId;
|
||||
SelectBox.add_to_cache(toId, o);
|
||||
SelectBox.redisplay(toId);
|
||||
}
|
||||
win.close();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue