Hello,

I have something like

class MyFields(widgets.WidgetsList):
    field1 = widgets.TextField(help_text="help for f1")
    ...

my_form = widgets.TableForm(fields=MyFields())

class Root:
  @expose('.templates.my_template')
  @validate(form=my_form)
  @error_handler()
  def display_form(self):
     ...
     return dict=(form=my_form, def_values=def_values)

Is there a way to change the help texts for the different fields at 
render time ?

Tia.

--~--~---------~--~----~------------~-------~--~----~
 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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to