Hi, why can't you rather do this:
form = SomeForm(fields, data) form.is_valid() You can easily fool with fields in constructor and then call the super with data set. Sebastjan On Sat, Mar 29, 2008 at 6:08 PM, Rufman <[EMAIL PROTECTED]> wrote: > > Hey Guys > > How and when do the django newforms validate forms and add errors to > the errors dictionary? > > Im trying to make a dynamic form, so I add the data after creating the > form class and adding the attributes. This means that I will need to > 'manually' call the form validation. > > ex: > when I do form = SomeForm(request.POST) the fields are evaluated > automatically. > I want to call this evaluation manually so that I can d: > > form = SomeForm() > form.setFileds(kwargs) > form.setData(equest.POST) > form.<evalutate field in form> > > > Thanks > > Stephane > > > -- Sebastjan --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---