[web2py] Re: it it possible to loop through field names and set "readable = False" conditional if field is empty?

2016-10-17 Thread Alex Glaros
perfect! thanks Niphlod for f in db.Address.fields: if ((specificAddress[f] is None) | (specificAddress[f] == '')): db.Address[f].readable = False -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code)

[web2py] Re: it it possible to loop through field names and set "readable = False" conditional if field is empty?

2016-10-17 Thread Alex Glaros
I left this part out. Should only be one record. specificAddressID = db(db.Address.super_object_fk == specificSuperObjectID).select(db.Address.id,limitby = (0,1)).first().id -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source

[web2py] Re: it it possible to loop through field names and set "readable = False" conditional if field is empty?

2016-10-17 Thread Niphlod
so record = thesingle_record_from_the_table for f in db.table.fields: if record[f] is None: db.table[f].readable = False On Monday, October 17, 2016 at 9:18:49 PM UTC+2, Alex Glaros wrote: > > I left this part out. Should only be one record. > > specificAddressID =

[web2py] Re: it it possible to loop through field names and set "readable = False" conditional if field is empty?

2016-10-17 Thread Niphlod
readable is on the Field (i.e. column) so what happens if row 1 has column a,b,c == None and row 2 has a,c,d == None ? On Monday, October 17, 2016 at 9:11:24 PM UTC+2, Alex Glaros wrote: > > Would like to loop through columns in a set object and set readable = > False if the field has no