From 61c93842f483511f763054ddd16d4c2d39ef1819 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 29 Nov 2006 21:48:58 +0000 Subject: [PATCH] newforms: Added BoundField.data property git-svn-id: http://code.djangoproject.com/svn/django/trunk@4143 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/newforms/forms.py | 7 ++++++- tests/regressiontests/forms/tests.py | 5 +++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/django/newforms/forms.py b/django/newforms/forms.py index 8b58b94ccd..3712c676c4 100644 --- a/django/newforms/forms.py +++ b/django/newforms/forms.py @@ -182,7 +182,7 @@ class BoundField(object): auto_id = self.auto_id if auto_id and not attrs.has_key('id') and not widget.attrs.has_key('id'): attrs['id'] = auto_id - return widget.render(self._name, self._form.data.get(self._name, None), attrs=attrs) + return widget.render(self._name, self.data, attrs=attrs) def as_text(self, attrs=None): """ @@ -194,6 +194,11 @@ class BoundField(object): "Returns a string of HTML for representing this as a