On Fri, 2009-04-10 at 12:16 -0700, Adam Fraser wrote:
[...]
> The problem I'm running into is that the value that comes into render
> for the ManyToManyField is a list of the id's for the selected stains
> and not the stains themselves.  I assume I should be getting them
> somehow through the django.db.models.fields.related.ManyRelatedManager
> which is in the original_value, but I haven't been able to figure out
> how.
> 
> Anyone know what I'm missing?

The Widget subclass should only be processing the data that is going to
be displayed on the form. For something like a choice field based on
models, this would be, say, the pk value and a string to use for the
human-readable portion.

The django.forms.models.ModelChoiceField is a good example to look at to
see what's going on. It uses ModelChoiceIterator.choice() to generate
the data that is passed to the widget for rendering and you'll see that
it returns (pk, label) pairs.

So it sounds like things are working as expected. What extra work are
you trying to do at the widget level that requires more than what is
already passed in (the sequence of (pk, label) values)? Why isn't
whatever field you're using generating the right data? It's the Field
subclass that you want to be addressing here, not the widget.

In summary, widgets are objects that know how to take flat data and
convert it to HTML. Fields are objects that know how to take more
complex Python things (models, arbitrary objects, ...) and convert them
to flat data for passing to the widgets.

Regards,
Malcolm



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