http://web2py.com/books/default/chapter/29/07?search=autocomplete#Autocomplete-widget
On Saturday, December 29, 2012 10:45:38 AM UTC+1, max wrote:
>
> In my dependancy tables I have thousands of entries.
> e.g.
>
> frg.define_table('group',
> Field('name','string'),
> )
>
> frg.define_table('kundenstamm',
> Field('a20',frg.group),
> )
>
> frg.kundenstamm.a20.requires = IS_IN_DB(frg, frg.group.id, '%(id)s ,
> %(name)s',zero=T('Choose'))
>
>
> I have thousands of values in group.
> So in my SQLFORM in kundenstamm , I need a auto-complete instead of a drop
> down.
> is it possible?
>
>
>
>
--