On 1/3/07, gordyt <[EMAIL PROTECTED]> wrote:
date_opened = forms.DateField(
initial=date.today(),widget=SelectDateWidget)
This does render the composite widget just fine, but it will not use a
date_opened value that is supplied with the form class is instantiated
and so displays the error saying that a required field is missing.
When you pass the data to the Form constructor, you'll have to pass
three separate values -- 'date_opened_month', 'date_opened_day' and
'date_opened_year' -- rather than one value 'date_opened'. This is
necessary because the SelectDateWidget requires three values instead
of one. Make sense?
Adrian
--
Adrian Holovaty
holovaty.com | djangoproject.com
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Django
users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---