Here is how you can modify the form at runtime. You can write
a constructor. In this example, I need the request for validation.

{{{
class TestForm(forms.ModelForm):
    class Meta:
        model=Filter_Test
    def __init__(self, request, *args, **kwargs):
        super(TestForm, self).__init__(*args, **kwargs)
        self.request=request
        ...
}}}

You can set choices for fields after the super call. Example:

self.fields['myfield'].choices=choices

Calvin Dodge schrieb:
> I've been tearing out what little hair I have left trying to figure
> this out.
>
> How do I dynamically fill a ChoiceField by filtering on a value known
> to the URLView? Every "dynamic fill" example I've found assumes the
> form knows it all - I haven't seen anything which shows me how to pass
> that value from the view to the form.
>
>   

-- 
Thomas Guettler, http://www.thomas-guettler.de/
E-Mail: guettli (*) thomas-guettler + de


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