- Author:
- pietras
- Posted:
- July 17, 2009
- Language:
- Python
- Version:
- 1.0
- Tags:
- fields forms strip
- Score:
- -1 (after 1 ratings)
Modifies CharField so that it's value is stripped before cleaning. Put before your forms class or somewhere higher (urls, models).
1 2 3 4 5 6 7 8 9 | from django import forms
def stripclean(self, value):
if isinstance(value, basestring):
value = value.strip()
return oldclean(self, value)
oldclean = forms.fields.CharField.clean
forms.fields.CharField.clean = stripclean
|
More like this
- Automatically setup raw_id_fields ForeignKey & OneToOneField by agusmakmun 7 months, 4 weeks ago
- Crispy Form by sourabhsinha396 8 months, 3 weeks ago
- ReadOnlySelect by mkoistinen 9 months ago
- Verify events sent to your webhook endpoints by santos22 10 months ago
- Django Language Middleware by agusmakmun 10 months, 2 weeks ago
Comments
Please login first before commenting.