[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)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 = 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 code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[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 data in it
>
> something like:
>
> [setattr(f, 'readable', False) for f in db.Address if specificAddress.
> f.name == None]
>
> (the set above is created with this line: specificAddress = 
> db.Address(specificAddressID)
>
> thanks
>
> Alex Glaros
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.