On 10/9/07, coffeeho <[EMAIL PROTECTED]> wrote:
> As a CharField, there's no problem. When I changed it to get the
> sexier ManyToManyField it got weird. The tags appear and transfer
> between fields (in admin view) and save in the link like they should,
> but they do not appear in the tagging "tagged items" table - only in
> the link (in admin view). I humbly beg for assistance.  (yes, I'm a
> noob... I know)

This won't work; because of database-level requirements, many-to-many
fields aren't updated by the admin (or any sort of
automatically-generated form) until *after* the object has completely
saved, which means that when save() is running the many-to-many
relation isn't yet updated.

-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to