Opened 17 years ago

Closed 17 years ago

#4970 closed (invalid)

documentation - Newforms - Overriding The Default Field Types

Reported by: anonymous Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords: newforms
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I assume the code sample:

>>> def my_callback(field, **kwargs):
...     if isinstance(field, models.DateField):
                             ^^^^^^
...         return MyDateFormField(**kwargs)
...     else:
...         return field.formfield(**kwargs)

should read

>>> def my_callback(field, **kwargs):
...     if isinstance(field, forms.DateField):

Change History (1)

comment:1 by Philippe Raoult, 17 years ago

Resolution: invalid
Status: newclosed

No. The callback takes a model field in argument and decides which form field to use to edit it.

Note: See TracTickets for help on using tickets.
Back to Top