I have a table:
db.define_table('table1',
Field('name', 'string', length=16, required=True, unique=True),
Field('shape', 'string', length=12, default='star', widget=SQLFORM.widgets.radio.widget, requires=IS_IN_SET(shapes)))
I use this SQLFORM to generate the form:
form = SQLFORM(db.table1, formstyle='divs')
I have the main form using divs, but the radio buttons, still use tables, which is really the one I want in divs. How can can I fix this?

