[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

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'Invitation', > description=u'Invitati

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

2007-09-01 Thread Andreas Reuleaux
Hi Roger, thanks for your fast reply. However: if I change invitation to be required, invitation = Bool( title=u'Invitation', description=u'Invitation?', required=True ) I still get two checkboxes for invitation: [ ] yes [ ] no Is there a way to ha