yes. from gluon.sqlhtml import AutocompleteWidget
db.define_table('mytable',
Field('person',db.person,requires=IS_IN_DB(db,db.person.id,'%
(name)s')),
...)
db.mytable.person.widget=AutocompleteWidget(request,db.person.name,db.person.id,orderby=db.person.name)
On May 20, 9:16 pm, greenpoise <[email protected]> wrote:
> Is there an alternative to drop down? a type ahead type of widget?

