1
0
mirror of https://github.com/django/django.git synced 2025-10-29 16:46:11 +00:00

newforms: Added Widget.value_from_datadict hook, which allows a Widget to define how to convert its post data dictionary to a value. Implemented it for CheckboxSelectMultiple and updated unit tests

git-svn-id: http://code.djangoproject.com/svn/django/trunk@4136 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty
2006-11-29 17:00:34 +00:00
parent a1cd3c9f52
commit 4a3ad338d6
3 changed files with 57 additions and 2 deletions

View File

@@ -36,6 +36,13 @@ class Widget(object):
attrs.update(extra_attrs)
return attrs
def value_from_datadict(self, data, name):
"""
Given a dictionary of data and this widget's name, returns the value
of this widget. Returns None if it's not provided.
"""
return data.get(name, None)
def id_for_label(self, id_):
"""
Returns the HTML ID attribute of this Widget for use by a <label>,
@@ -186,12 +193,16 @@ class CheckboxSelectMultiple(SelectMultiple):
cb = CheckboxInput(final_attrs)
for option_value, option_label in chain(self.choices, choices):
option_value = smart_unicode(option_value)
field_name = unicode(name + option_value)
field_name = name + option_value
rendered_cb = cb.render(field_name, (option_value in str_values))
output.append(u'<li><label>%s %s</label></li>' % (rendered_cb, escape(smart_unicode(option_label))))
output.append(u'</ul>')
return u'\n'.join(output)
def value_from_datadict(self, data, name):
data_list = [k for k, v in self.choices if data.get(name + k)]
return data_list or None
def id_for_label(self, id_):
# See the comment for RadioSelect.id_for_label()
if id_: