[View]  [Edit]  [Lock]  [References]  [Attachments]  [History]  [Home]  [Changes]  [Search]  [Help] 

textArea

Widget Type #textArea
Widget iOS classMobileTextArea
iOS categoryIOSWidgets
Widget Web classMobileTextArea
web categoryWebWidget
Widget Android classMobileTextArea
Properties autocapitalize - autocomplete - autocorrect - collapseSelection - rows - spellcheck - cols - position - top - bottom - left - right - readOnly
Events #needsRows #needsCols #needsResize #getContents #getConfiguration (and inherited events from its superclass)
Sample use in spec
(#widgets -> ( 
        (#description -> (
		   (#class -> #MobileTextArea ),
		   (#configuration -> (
		     (#order -> 1 ), (#cols -> 40), (#rows -> 10),
	         (#height -> 60 ), 
	         "(#width -> #100% ),
	         (#border ->  '0px solid'),"
	         (#listeners -> (
	            (#needsValue -> [:coordinator | coordinator model comment ])
			 ))
		   ))
    )),
...