[Zope3-Users] browser:form

David Johnson djohnson at jsatech.com
Tue Feb 21 22:31:49 EST 2006


Never mind - I found it in zope.formlib.interfaces.IAction.

> -----Original Message-----
> From: zope3-users-bounces at zope.org [mailto:zope3-users-bounces at zope.org]
> On Behalf Of David Johnson
> Sent: Tuesday, February 21, 2006 8:56 PM
> To: 'Jeff Shell'
> Cc: zope3-users at zope.org
> Subject: RE: [Zope3-Users] browser:form
> 
> After looking into formlib, this really looks great! Thanks for the help.
> When I use it I see references to the "action" field. Are you familiar
> with
> this? There is some documentation in FormBase as you suggested, but does
> my
> errors refer to "action.submitted" which I'm having trouble finding.
> 
> > Formlib
> > =======
> >
> > If you're using forms and you're running Zope 3.2, look at
> > zope.formlib. With formlib, it's easier to see what classes you can
> > inherit from and what they're doing and when you might want to
> > override a method and would need to call super, and what you would
> > need to pass along to the superclass when you do. This is an example
> > of what that might look like:
> >
> > from zope.formlib import form
> >
> > class Function(form.FormBase):
> >     # form.Fields finds the fields that might have been provided by
> >     # browser:form schema="...ITPM".
> >     form_fields = form.Fields(ITPM)
> >
> >     base_url = ''
> >
> >     # if you have a custom template, you can provide it here
> >     # instead of ZCML
> >     template = ViewPageTemplateFile('functionform.pt')
> >
> 
> 
> _______________________________________________
> Zope3-users mailing list
> Zope3-users at zope.org
> http://mail.zope.org/mailman/listinfo/zope3-users



More information about the Zope3-users mailing list