Re: [Zope3-Users] z3c.form: Integer-based fields incorrectly validated

2007-08-01 Thread Markus Leist
Hi, do you have a from zope.schema.fieldproperty import FieldProperty class Foo: implements(IFoo) foobarid = FieldProperty( IFoo['foobarid']) ? Regards, Markus Am Mittwoch 01 August 2007 um 19:15 Uhr schrieb Hermann Himmelbauer <[EMAIL PROTECTED]>: > Hi, > In one of my forms

[Zope3-Users] z3c.form: Integer-based fields incorrectly validated

2007-08-01 Thread Hermann Himmelbauer
Hi, In one of my forms, one field is defined like that: foobarid = Int( title=u'ID', description=u'ID of Foobar', required=False) When I add this field in a z3c.form based form, e.g.: fields = field.Fields(IFoo['foobarid']) Then the validation of the field fails, e.g