Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#1699 closed defect (fixed)

raw_id_admin problem

Reported by: anonymous Owned by: Adrian Holovaty
Component: contrib.admin Version:
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I have ForeignKey field with raw_id_admin=True which references ProductVariation object. In admin when I'm selecting ProductVariation object from popup window, ProductVariation edit windows is opened instead of copying ProductVariation id into ForeignKey field of opener window. In JS console window of my Firefox I see following record:

Error: missing ) after argument list
in
opener.dismissRelatedLookupPopup(window, 621L); return false;

Change History (2)

comment:1 by Adrian Holovaty, 18 years ago

priority: highnormal
Severity: majornormal

comment:2 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [2844]) Fixed #1699 -- Fixed JavaScript error in admin site with raw_id_admin and database backend that returns integers as long ints

Note: See TracTickets for help on using tickets.
Back to Top