I need to catch the request parameters in a crud.create operation Thi the simple code in the controller
form = crud.create(db.anno,next='list_anno')
and this the domain
db.define_table('anno',
Field('descrizione'),
Field('incorso','boolean'),format='%(descrizione)s')
Now i want before the create operation manipulate the 'incorso' Field
Thanks
--

