hey one and all,

say there is this:

db.define_table('dictionary',
                    Field('word', length=32, requires=IS_NOT_EMPTY()),
                    Field('type', length=1, 
requires=IS_IN_SET(('F','G','A','P','C','B','M','U')), comment="Frequent, 
General, Astronomical, Physical, Chemical, Biological, Medical, 
Urban/Slang"),
                    format = '%(id)s %(word)s %(type)s')

in a controller, we can access the structure information like:

db.dictionary['type'].length
or
db.dictionary['type'].comment

but how do you get the set from the requires under type?

something like

db.dictionary['type'].requires.????

thanx in advance, Lucas

-- 
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.

Reply via email to