On Fri, 2007-06-08 at 13:09 +0200, Przemyslaw Wegrzyn wrote: > Hi! > > How can I customize a validation error message? Looking at the code of > any validator I can see that it uses gettext(), so I can use i18n > mechanisms to customize the message. But I'm not too happy with that. > > What if I want the message to be generated dynamically based on the > actual data (Like "You entered 30, but this is not really a valid number > here")? The only solution that comes to my mind is to make a callable > wrapper class that will call original validator, catch ValidationError, > and rethrow it with new message. Any better solution?
You don't explain whether you are using oldforms or newforms here. For newforms, override the Field class(es) that you wish to customise and write new clean() methods. Your methods could just call the super-classes clean, catch ValidationError and replace it, or do something more if you wanted. For oldforms, you would need to replace the validator_list entries in the Fields you are interested in, I guess. Have a look at the source code (django/db/models/fields/__init__.py) to see how validator_list is used in each class you are interested in. In either case, if you are creating a form directlly from the model, instead of manually, you pretty much have to live with the error messages we give you. The automatic creation is always designed for teh simple, straightforward case. Any customisation requires a bit of code on your part. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---