On 2/19/07, juampa <[EMAIL PROTECTED]> wrote: > It used to be that if you had an IntegerField in a model class, and > you wanted to restrict its valid rango to , say, 0 to 10, you would > write a custom validator function and add it to the validator_list on > the form field or even the model field. What is the equivalent way to > do this with newforms?
Hi juampa, Either write a custom Field subclass, or implement the clean_FIELDNAME method on your Form, where FIELDNAME is the name of the field you want to validate. Check the unit tests for examples of both approaches. The unit tests are linked-to from the newforms documentation. 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 -~----------~----~----~----~------~----~------~--~---