[web2py] Re: reload models
I may have figured it out. The problem may have been related to something throwing an error so it was putting an unexpected value in the computed field. Seems to be working ok now.
[web2py] Re: reload models
I should note that I am using "compute" which calls a function via lambda. def get_expire_date(r): return (r['days'] + 1) * (r['duration']) Field('expire_date', compute=lambda r: get_expire_date(r)), On Wednesday, January 26, 2011 6:20:05 PM UTC-8, pbreit wrote: > > I can't seem to