Hello all,

If I have the following:
db.define_table('languages', Field('language', 'string'))

db.languages.language.requires = \
                [IS_IN_SET(['english', 'french', 'german']), \
                 IS_NOT_EMPTY(error_message='Value required')]
db.languages.language.widget = SQLFORM.widgets.radio.widget

and I render a form that when submitted has no entry, it places an
error message under each radio button.

Is there a way to present the one error message for the entire group
of radio buttons?

Thanks for you help.

Cheers, Duane.

Reply via email to