[web2py] Re: LOAD and .load confusion.

2012-04-20 Thread Annet
Hi Anthony, Ough, it must have been my focus on the modal window that made me overlook this :-( Thanks for your reply. Kind regards, Annet. row is actually a DAL Rows object -- if you want a Row object, you have to > select a specific row. Try: > > row=db(db.EventList.id

[web2py] Re: LOAD and .load confusion.

2012-04-20 Thread Anthony
> > def event(): > response.view='calendar/event.html' > row=db(db.EventList.id==request.args(0)).select(db.EventList.ALL) row is actually a DAL Rows object -- if you want a Row object, you have to select a specific row. Try: row=db(db.EventList.id ==request.ar