[web2py] Re: reference type field issue when requires is set ?

2013-10-04 Thread Anthony
> the issue I am pointing to is related to the display of the "owner_id" > values in the grid itself and > yes, my *real* code sets the "requires" attribute directly in the "thing" > table definition rather than after the fact as shown above, I didn't think > that this would make a difference,

[web2py] Re: reference type field issue when requires is set ?

2013-10-04 Thread Mirko
Hi Anthony, the issue I am pointing to is related to the display of the "owner_id" values in the grid itself and yes, my *real* code sets the "requires" attribute directly in the "thing" table definition rather than after the fact as shown above, I didn't think that this would make a difference,

[web2py] Re: reference type field issue when requires is set ?

2013-10-04 Thread Anthony
> > > db.define_table('gender', Field('name'), format='%(name)s') > db.define_table('person', Field('name'), Field('gender_id','reference > gender'), format='%(name)s') > db.define_table('thing', Field('name'), Field('owner_id','reference > person',format='%(name)s') > > with this controller: >