Have you tried putting @error_handler on the validating controller?
Here is an example:
from turbogears import error_handler
def myform(self, **stuff):
form code here
@error_handler(myform)
@validate(form=my_input_form)
def myformvalidator(self, **stuff):
handle result after validation
Any validation errors result in the user being pushed to the controller
listed as an error_handler. You can get more info here:
http://docs.turbogears.org/1.0/ErrorHandling
-Adam
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---