On 7/8/07, Stu <[EMAIL PROTECTED]> wrote:
>
> In a similar vein to the OP, I'm trying to populate a choices list for
> a form (using newforms) from a database:
>
> nameChoices = Names.objects.filter(initials='AB')
> NameSelection.base_fields['names'].widget =
> widgets.Select(choices=nameChoices.Name)
>
> However, I am not having much succcess, I get this error:
> AttributeError at /names/
> '_QuerySet' object has no attribute Name'
>
> Anyone have any ideas?

Keep in mind that Django doesn't contain any magic syntax parsers -
it's just Python code. If what you type doesn't make sense as raw
Python, it won't work in Django, either.

So - does nameChoices have an attribute called Name? No - nameChoices
is a list of objects. Each object in the list might have an attribute
called name, but that's not the same thing.

To get this example to work, you will need to do a list comprehension
to convert the list of objects into a list of names:

widgets.Select(choices=[obj.Name for obj in nameChoices])

You will also need to keep in mind the time at which that
comprehension will be evaluated. Depending on how you define and use
your form, you may find that the choices list isn't as dynamic as you
would like. This may be due to the queryset getting evaluated at time
of definition, rather than at time of use. If it is evaluated at time
of definition, it won't get re-evaluated each time you use it, so the
choices list won't be updated if names are added or removed from the
list. You may find it necessary to define a function that returns the
list, and use that function in the 'choices' definition.

Yours,
Russ Magee %-)

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