On Thu, Feb 5, 2009 at 1:14 AM, Brian <brianc...@yahoo.com> wrote:

>
> I have a ModelForm subclass where I define a special field. How do I
> make that special field appear first in the rendered form (using a
> form.as_* method)?
>
> Here is an example:
>
> class MyModelForm(forms.ModelForm):
>    mySpecialField = forms.ChoiceField(label='Special', choices=(('a',
> 'aa')))
>    class Meta:
>        model = MyModelType
>
> The problem is mySpecialField is rendering last, but I wish it to
> appear first.
>
> Thank you for your assistance.


I don't know of any hook/knob to adjust the order of fields.  You may need
to write a custom form renderer rather than relying on the generic
form.as_*.

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