Il 20/06/2012 10:26, Moritz Schlarb ha scritto:
> Glauco, is that TurboGears 1 you're using?
Yes...
i found the problem (and it is very strange).
I've 2 controllers that expose the same form:
the form is like:
form = TableForm( fields=[...],
validator=Schema(),
template="...",
action='save')
If i define a new form IDENTICAL to that one:
form2 = TableForm( fields=[...],
validator=Schema(),
template="...",
action='save')
The validation is correct but no error are showed.
i've solved doing this:
form2=form
but i'm not sure if this is correct.
Glauco