Kevin Dangoor wrote:
> You can instantiate a form like this:
> myform = TableForm(widgets=[
> widgets.TextField("name"),
> widgets.TextField("address"),
> widgets.TextField("age", default=0,
> validator=validators.Int())])
Isn't that just begging to be...
class myform(TableForm):
name = widgets.TextField()
address = widgets.TextField()
age = widgets.TextField(default=0, validator=validators.Int())
+1 insightful
--
"Things fall apart. The Center cannot hold."
- Life as a QA geek, in a nutshell.
Best,
Jeff

