On Wed, Jan 7, 2009 at 7:47 AM, jeffhg58 <jeffh...@comcast.net> wrote:

>
> I have a 2 forms. One to add a new author and then another form for
> Articles which has a drop down list to reference the authors. The
> behavior I am seeing is that when I add a new author and then go to
> the New Article form which references the author it does not display
> the new record. Also, I put in some print statements in the New
> Article form class and those statements are only executed when I go to
> my home page.
>

Yes, the NewArticle form class is only loaded once, and then reused.  This
is standard Python behavior.  If you need to depend on data that may change
between the time the form class is loaded and a form instance is created,
you need to put the logic that retrieves and uses that data into an __init__
function.  The __init__ function will get called each time a NewArticle form
instance is created, rather than just once when the NewArticle code is
imported/loaded.

Karen

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to