The is no public/documented API for reorder fields, but you can do some trick with SortedDict:
class MyModelForm(forms.ModelForm): mySpecialField = forms.ChoiceField(label='Special', choices=(('a','aa'))) class Meta: model = MyModelType MyModelForm.base_fields.keyOrder = ["mySpecialField"] + MyModelForm.base_fields.keyOrder[:-1] On Thu, Feb 5, 2009 at 9: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. > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---