Re: [Zope3-Users] z3c.form, checkboxes for Bool fields

2007-09-07 Thread Darryl Cousins
Hi, On Tue, 2007-09-04 at 18:35 -0400, Stephan Richter wrote: > On Saturday 01 September 2007 19:36, Andreas Reuleaux wrote: > > Is there a way to have only one checkbox generated? - like this: > > > >[ ] Invitation > > > > That's what I want. > > I have implemented this widget now. It is av

Re: [Zope3-Users] z3c.form, checkboxes for Bool fields - thanks a lot, now: z3c.form egg from svn

2007-09-05 Thread Andreas Reuleaux
Thanks again, works like a charm, i. e. both: * your tree / buildout config with link to z3c.form from svn * and the new checkbox.SingleCheckBoxFieldWidget -Andreas On Tue, Sep 04, 2007 at 10:40:32PM -0400, Stephan Richter wrote: > On Tuesday 04 September 2007 21:13, Andreas Reuleaux wrote: >

Re: [Zope3-Users] z3c.form, checkboxes for Bool fields - thanks a lot, now: z3c.form egg from svn

2007-09-04 Thread Stephan Richter
On Tuesday 04 September 2007 21:13, Andreas Reuleaux wrote: > Next question now: how do I tell zc.buildout to build an egg from svn > for z3c.form? - I have tried this (adrn ist my application): My tree looks something like that: packages/ z3c.form/ --> svn://svn.zope.org/repo

Re: [Zope3-Users] z3c.form, checkboxes for Bool fields - thanks a lot, now: z3c.form egg from svn

2007-09-04 Thread Andreas Reuleaux
On Tue, Sep 04, 2007 at 06:35:29PM -0400, Stephan Richter wrote: > On Saturday 01 September 2007 19:36, Andreas Reuleaux wrote: > > Is there a way to have only one checkbox generated? - like this: > > > >    [ ] Invitation > > > > That's what I want. > > I have implemented this widget now. It is a

Re: [Zope3-Users] z3c.form, checkboxes for Bool fields

2007-09-04 Thread Stephan Richter
On Saturday 01 September 2007 19:36, Andreas Reuleaux wrote: > Is there a way to have only one checkbox generated? - like this: > >    [ ] Invitation > > That's what I want. I have implemented this widget now. It is available in the z3c.form trunk and I updated the "All widgets" demo as well show

Re: [Zope3-Users] z3c.form, checkboxes for Bool fields

2007-09-01 Thread Andreas Reuleaux
o Is there a way to have only one checkbox generated? - like this: [ ] Invitation That's what I want. -Andreas On Sun, Sep 02, 2007 at 12:26:22AM +0200, Roger Ineichen wrote: > Hi Andreas > > > An: zope3-users@zope.org > > Betreff: [Zope3-Users] z3c.form, checkboxes

AW: [Zope3-Users] z3c.form, checkboxes for Bool fields

2007-09-01 Thread Roger Ineichen
Hi Andreas > An: zope3-users@zope.org > Betreff: [Zope3-Users] z3c.form, checkboxes for Bool fields > > In my interface I have Bool fields, say e. g. for invitation > > class IAdr(Interface) > ... > invitation = Bool( > title=u'Invi

[Zope3-Users] z3c.form, checkboxes for Bool fields

2007-09-01 Thread Andreas Reuleaux
In my interface I have Bool fields, say e. g. for invitation class IAdr(Interface) ... invitation = Bool( title=u'Invitation', description=u'Invitation?', required=False ) ... Now when rendering the following edit-form class AdrEdi