#17170: django.forms.fields.CharField.widget_attrs wrong return
------------------------+--------------------------------------
Reporter: tsabi | Owner: nobody
Type: Bug | Status: new
Component: Forms | Version: 1.3
Severity: Normal | Resolution:
Keywords: | Triage Stage: Unreviewed
Has patch: 1 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
------------------------+--------------------------------------
Changes (by tsabi):
* needs_better_patch: => 0
* needs_tests: => 0
* needs_docs: => 0
Comment:
Because it returns None, this code didn't work for me:
{{{#!python
from django import forms
class DomainRecForm(forms.Form):
host = forms.CharField(max_length=50, label='Host Name',
required=False)
value_name = forms.CharField(max_length=500, label='Host Address (by
name)', required=False, widget=forms.Textarea)
drc = DomainRecForm(data=request.POST)
h = forms.HiddenInput()
h.attrs.update(drc.fields['value_ip'].widget_attrs(h))
drc.fields['value_name'].widget = h
}}}
Because {{{ widget_attr(forms.HiddenInput()) }}} returns a None object,
and {{{ {}.update(None) }}} throws an exception
--
Ticket URL: <https://code.djangoproject.com/ticket/17170#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.