On 10/4/06, Seemant Kulleen <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> Now I'm at ForeignKey funkiness.  So I have the Services model which
> has a ForeignKey field to the Sermon model.  The funny thing is that
> if I choose a sermon object when I first create a new service object,
> all is well.  If, on the other hand, I don't choose one, then it turns
> out that I can never choose one.  That is to say, I can choose one,
> and hit save and when I come back in it's unchosen.  Happens every
> single time.  I've attached the services/models.py and
> sermons/models.py if that helps.

I've got a similar model arrangement:

    instructor = ForeignKey(
        Person,
        limit_choices_to = dict(user__groups__name__in=['Instructors']),
        null = True,
        blank = True,
        )

and I can change instructor from chosen to unchosen and vice versa
without any problem. I'm using a recent SVN trunk version of Django
with a MySQL backend. Have you altered your model since creating the
table? You may want to compare the output of manage.py sqlall with our
actual table schema.  Maybe your table schema has that column set NOT
NULL or something, but I would expect an error in that case.

-- 
This message has been scanned for memes and
dangerous content by MindScanner, and is
believed to be unclean.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to