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):
Note:
See TracTickets
for help on using tickets.
No. The callback takes a model field in argument and decides which form field to use to edit it.