[web2py] smartgrid, linked tables and columns

2011-09-29 Thread andrej burja
hi i have def person_manage(): columns = ['t_person.id','t_person.f_name','t_oseba.f_surname','t_oseba.f_email'] linked_tables = ['t_message'] form = SQLFORM.smartgrid(db.t_oseba,linked_tables=linked_tables,columns=columns,onupdate=auth.archive) return locals() without

Re: [web2py] smartgrid, linked tables and columns

2011-09-29 Thread Jim Steil
In you columns list you need to include the columns from the t_message table that you would like displayed in the list. -Jim On 9/29/2011 1:27 AM, andrej burja wrote: hi i have def person_manage(): columns = ['t_person.id','t_person.f_name','t_oseba.f_surname','t_oseba.f_email']