I've created a onetomany relationship between two models. The model that has the foreignkey I can use their formset without problems, but now I want to fill this relation through the form of the model that has the "many", I know I can retrieve it using the *_set, but how can I create a MultipleChoiceField form element of this data?

Thanks for any help!

Regards,

Thiago

link|improve this question
1  
TTIWWC (This Thread Is Worthless Without Code) – George Cummins Jul 8 '11 at 15:02
feedback

1 Answer

Have a look at the docs for fields which handle relationships. You could use a ModelMultipleChoiceField -- it's essentially a MultipleChoiceField that takes its choices from a queryset.

link|improve this answer
Thanks for the answer. But how I bound this ModelMultipleChoiceField to the relation? I bound it to *_set? My doubt is how Django knows how to update the related models. – Magrelo Jul 8 '11 at 15:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.