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
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
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