One option would be to simply re-assign the value for that field in
the form instance/class base_fields, ala:

Model_Form = forms.models.form_for_model(Model)
Model_Form.base_fields['multi_field'] = forms.CharField(maxlength=150,
initial=Model_Form.base_fields['multi_field'].initial)

Hope that helps.

On Jan 15, 9:08 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> Hello everyone,
>
> I am looking for a way to modify certain aspects of a Form class
> returned by newforms.form_for_model().  I have a ManyToManyField(Tag)
> attribute in my model and form_for_model() makes that a multiple
> select.  I was wondering if it was possible to change just that field
> to a CharField (and then I'd modify save() to use get_or_create).
>
> Thank you very much


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