Package gluon :: Module html :: Class SELECT
[hide private]
[frames] | no frames]

Class SELECT

source code

object --+        
         |        
       DIV --+    
             |    
         INPUT --+
                 |
                SELECT

example:

>>> SELECT('yes','no',_name='selector',value='yes',requires=IS_IN_SET(['yes','no'])).xml()
'<select name="selector"><option value="yes" selected="selected">yes</option><option value="no">no</option></select>'
Instance Methods [hide private]
 
fixup(self) source code
 
postprocessing(self) source code

Inherited from INPUT: validate, xml

Inherited from DIV: __delitem__, __getitem__, __init__, __len__, __setitem__, __str__, append, insert, traverse

Inherited from DIV (private): _xml

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__

Class Variables [hide private]
  tag = 'select'
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

fixup(self)

source code 
Overrides: DIV.fixup

postprocessing(self)

source code 
Overrides: INPUT.postprocessing