I would like to add an extra checkbox to my form which I generate with
ModelForm. This is for visual enhancement of the form. If the extra
checkbox is checked, I will display a map for user to mark his
location.

My form class is like that:

class NoteForm(forms.ModelForm):
    is_location = forms.BooleanField(required=False)

    class Meta:
        model = Note


I wish this checkbox to appear just before the location field which is
specified in my model. But it appears as the last field when I display
the form.

Documention suggests to order the fields in the model class in the
order we wish hem to be displayed, but this is not applicable to my
case.

I tried specifying fields = (...) in the Meta inner class of the
ModelForm class, but its order is not taken into account.

Is there a way to specify the field order in ModelForm with extra
fields?


Thanks,
omat

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