form = SQLFORM.factory(Field('productSiteId', db.productSite, label='Add-on',
required=True, requires=requires),
Field('quantity', 'decimal(9,4)', label='at'),
_id='addonForm',
_formname='addonForm')
if form.process(formname='addonForm').accepted:
When new record is added to the controller the form.process... works fine if using Firefox, but not when using Chrome/Opera or IE. What am I missing to make this work reliably? The other three browsers all return False when adding a new record. Firefox processes it as I'd expect it to.