On Wednesday, August 3, 2011 1:35:17 PM UTC-4, Ialejandro wrote:
>
> Field('user_proj','string',requires=IS_IN_DB(db,db.project.id
> ,"%(name)s",multiple=True)),
>
> Field('owner_proj','string',requires=IS_IN_DB(db,db.project.id,"%(name)s",
> multiple=True)),
> Field('reader_proj','string',requires=IS_IN_DB(db,db.project.id
> ,"%(name)s",multiple=True)),
I'm not sure if this is the only problem, but shouldn't the above three
fields be of type 'list:reference' rather than 'string' (given that they are
using the IS_IN_DB validator with multiple=True)?
Anthony