Opened 14 years ago
Closed 14 years ago
#15773 closed New feature (needsinfo)
MultiValueField could be more convenient
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Forms | Version: | 1.3 |
Severity: | Normal | Keywords: | |
Cc: | vim@… | Triage Stage: | Unreviewed |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
It seems to me that the MultiValueField could be a lot more useful. I'm assuming the SplitDateTimeField code exemplifies the normal use case, and I see two things here that bother me.
- To use MultiValueField, coder must create and assign a widget class. Maybe I'm just lazy because the other Field classes seem to provide reasonable defaults, but couldn't this field provide a reasonable default as well?
compress
must be defined on the Field class, butdecompress
must be defined on the Widget class. I don't know if I'd call this a violation of DRY, but it seems to me it would be much nicer to put these two together, since one is the inverse of the other. Obviously there's nothing preventing me from putting my MultiWidget subclass and MultiValueField subclass together, but if I separate the Widgets from the Fields, as the django source has done, then I introduce room for maintenance errors.
I guess this is mainly about convenience. We do like making good development practice more convenient.
My suggestion for addressing these two points is below. Thanks for reading.
from django.forms import fields from django.forms import widgets class MultiValueFieldWidgetDescriptor(object): def __get__(self, instance, owner): widget_base = getattr(owner, 'widget_base', widgets.MultiWidget) class MyWidget(widget_base): def __init__(self, attrs=None): widgets = [f.widget for f in instance.fields] super(MyWidget, self).__init__(widgets, attrs) decompress = owner.decompress.__get__(self) return MyWidget class MultiValueField(fields.MultiValueField): widget = MultiValueFieldWidgetDescriptor()
Change History (2)
comment:1 by , 14 years ago
Easy pickings: | unset |
---|
comment:2 by , 14 years ago
Resolution: | → needsinfo |
---|---|
Status: | new → closed |
Without more info I don't see what the problem here is. If you can provide the use case or the problem that prompts this patch, please feel free to reopen.
I'm not sure I get it. Can you share a specific use case or a problem you have that this solves?