Hi I have this type of form in my model file:

db.define_table('pratiche',
                Field('nome', requires=IS_NOT_EMPTY()),
                Field('descrizione', 'text', requires=IS_NOT_EMPTY()),
                Field('tipo_allegato', requires=IS_IN_SET(['mandato', 
'comparsa preliminare', 'relazione ctu', 'parcella'])),
                Field('doc_filename'),
                Field('doc', 'upload'),
                Field('stato_pratica', requires=IS_IN_SET(['aperta', 
'attesa', 'chiusa'])),
                auth.signature)


I want to setup a default value for field stato_pratica to 'aperta' every 
time a user create a new record
This is my controller function to create a new record

def create():
    form = SQLFORM(db.pratiche).process()
    form.vars.stato_pratica = 'aperta'
    form.add_button('Back', URL('index'))
    if form.accepted:
        session.flash = T('Posted')
        redirect(URL('index'))
    elif form.errors:
        session.flash = T('Il form ha degli errori')
    return locals()

I try to set form.values.stato_pratica = 'aperta' but it not works.

Thanks.

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to