Hey all, A question about form fields and widgets: I want to use custom ones in a ModelForm, but I'm not sure where to specify this.
I see the widgets dict in the ModelForm Meta class to control the custom widgets, but no equivalent for custom form fields. http://docs.djangoproject.com/en/1.3/topics/forms/modelforms/#overriding-the-default-field-types-or-widgets suggests I should just do field_name = CustomFormField() on my ModelForm, but when it comes to full_clean(), I don't see my custom form field being used in ModelForm.fields... Any suggestions much appreciated. Thanks! James -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

