[web2py] Re: Ajax and table rows.

2011-11-22 Thread Cliff
signature from book: IS_IN_DB(db, 'person.id', '%(name)s', zero=T('choose one')) can also be: IS_IN_DB(db(query), 'person.id', '%(name)s', zero=T('choose one')) You have: IS_IN_DB(db(db.categories.parent_table==request.args(0)),'categories.id','c ategories.name') Should be: IS_IN_DB(db(db.catego

[web2py] Re: Ajax and table rows.

2011-11-21 Thread tsvim
Thanks, you guys rock community support.