I am not so great with forms, but how do I set a particular value when they have completed the form...

####################################
#MODEL
db.define_table('page',
        Field('page_name', 'string'),
        Field('url_name', 'string'),#Basically it takes the page name and 
replaces spaces with _
        Field('conference_id', 'integer'),
        Field('contents', 'text'),
        Field('creator', 'integer')
        )
#CONTROLLER
page_form = SQLFORM(db.page)
####################################

And I want to set a field that is hidden in this form to session.conference_id.
....
Best Regards,
Jason Brower

Reply via email to