Re: [web2py] Re: Pre-Populate crud.update

2011-08-03 Thread Anthony
On Thursday, August 4, 2011 12:07:34 AM UTC-4, Ialejandro wrote: > > In fact I'm using list:string because architechture, I'm doing a lot of > manual parsing, but Is it a problem? Coould it be implemented? or the best > way is to use list:reference? It might be best to use list:reference if y

Re: [web2py] Re: Pre-Populate crud.update

2011-08-03 Thread Ismael Serratos
In fact I'm using list:string because architechture, I'm doing a lot of manual parsing, but Is it a problem? Coould it be implemented? or the best way is to use list:reference? On Wed, Aug 3, 2011 at 10:49 PM, Anthony wrote: > On Wednesday, August 3, 2011 1:35:17 PM UTC-4, Ialejandro wrote: >> >

[web2py] Re: Pre-Populate crud.update

2011-08-03 Thread Anthony
On Wednesday, August 3, 2011 1:35:17 PM UTC-4, Ialejandro wrote: > > Field('user_proj','string',requires=IS_IN_DB(db,db.project.id > ,"%(name)s",multiple=True)), > > Field('owner_proj','string',requires=IS_IN_DB(db,db.project.id,"%(name)s", > multiple=True)), > Field('reader_proj','s

[web2py] Re: Pre-Populate crud.update

2011-08-03 Thread Ismael Serratos
I've tried with db.auth_user.owner_proj.default = db.(db.auth_user.id == reques.args[0]).select(db.auth_user.owner_proj).first() form = crud.update(db.auth_user, request.args[0]) but nothing happens, I mean, the form shows filled OK except in the 3 multiple fields which appears to be empty, I ca