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 selected value="yes">yes</option><option value="no">no</option></select>'
Instance Methods [hide private]
 
postprocessing(self) source code

Inherited from INPUT: rec_accepts, xml

Inherited from DIV: __init__, __str__, accepts, rec_clear

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]

postprocessing(self)

source code 
Overrides: INPUT.postprocessing