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

Class TEXTAREA

source code

  object --+            
           |            
XmlComponent --+        
               |        
             DIV --+    
                   |    
               INPUT --+
                       |
                      TEXTAREA

example:
   TEXTAREA(_name='sometext', value='blah '*100, requires=IS_NOT_EMPTY())
'blah blah blah ...' will be the content of the textarea field.

Instance Methods [hide private]
 
_postprocessing(self)
Handling of attributes (normally the ones not prefixed with '_').
source code

Inherited from INPUT: xml

Inherited from INPUT (private): _validate

Inherited from DIV: __delitem__, __getitem__, __init__, __len__, __nonzero__, __setitem__, __str__, append, element, elements, flatten, insert, sibling, siblings, update

Inherited from DIV (private): _fixup, _setnode, _traverse, _wrap_components, _xml

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

Class Variables [hide private]
  tag = 'textarea'

Inherited from DIV: regex_attr, regex_class, regex_id, regex_tag

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

_postprocessing(self)

source code 

Handling of attributes (normally the ones not prefixed with '_').

Nothing to postprocess yet. May be overridden by subclasses
Overrides: INPUT._postprocessing