custom DateField format widget

1
2
3
4
5
6
7
8
9
import django.newforms as forms
import datetime

class DateTextInput(forms.TextInput):
    def render(self, name, value, attrs=None):
        if (type(value) == datetime.date):
          value = value.strftime("%d.%m.%Y")

        return super(DateTextInput, self).render(name, value, attrs)

More like this

  1. Custom DateField To Handle Credit Card Exp Date. Format: MM/YY by pjs 3 years, 10 months ago
  2. RangeField and RangeWidget by marinho 3 years, 7 months ago
  3. Drop down Datefield by lurker 4 years, 8 months ago
  4. Use JQuery Calendar in ModelForm by Induane 1 year, 10 months ago
  5. SelectTimeWidget by bradmontgomery 3 years, 6 months ago

Comments

rubic (on March 7, 2007):

I've created a similar date widget. One possible enhancement would be to automatically size it in render if not otherwise specified:

if not 'size' in final_attrs:
    final_attrs['size'] = 10

#

(Forgotten your password?)