Re: Re: forms -> is_required

2006-09-11 Thread James Bennett
On 9/11/06, patrickk <[EMAIL PROTECTED]> wrote: > def isRequired(self, field_data, all_data): He doesn't seem to be asking about writing a new validator; instead he wants to replace the message provided by the built-in one (and, of course, the built-in one will always respond on a non-blank field

Re: forms -> is_required

2006-09-11 Thread patrickk
def isRequired(self, field_data, all_data): if not field_data: raise validators.ValidationError("please fill in data.") isRequired.always_test = True Am 11.09.2006 um 16:44 schrieb [EMAIL PROTECTED]: > > Hi all, > > I have a custom manipulator like this : > > ... > form