#16630: Support for HTML5 input types
-----------------------------+------------------------------------
     Reporter:  jonash       |                    Owner:  nobody
         Type:  New feature  |                   Status:  new
    Component:  Forms        |                  Version:  SVN
     Severity:  Normal       |               Resolution:
     Keywords:  html5        |             Triage Stage:  Accepted
    Has patch:  1            |      Needs documentation:  1
  Needs tests:  0            |  Patch needs improvement:  0
Easy pickings:  0            |                    UI/UX:  0
-----------------------------+------------------------------------

Comment (by jonash):

 How about adding a `input_type` parameter to `class Input(Widget)` so that
 you can override the input type if it doesn't fit your needs?

 {{{#!py
 class MyForm(forms.ModelForm):
   class Meta:
     ...
     # Use "type=date" despite the pathetic browser support:
     widgets = {'date': forms.Input(input_type='date')}
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/16630#comment:13>
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 django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to