TextArea
is a multi-line text editor field.
XML-name of the component: textArea
TextArea
component is implemented for both Web Client and Desktop Client.
TextArea
mostly replicates the functionality of the TextField component except that a datatype
can not be assigned to it. I.e. TextArea
is intended to be used for text and string attributes of entities only.
TextArea
component has the following attributes:
-
cols
androws
set the number of columns and rows of text:<textArea id="textArea" cols="20" rows="5" caption="msg://name"/>
The values of
width
andheight
have priority over the values ofcols
androws
. -
resizable
– if this attribute is set totrue
and the number of rows is more than one, it becomes possible to change the size of the component:<textArea id="textArea" resizable="true" caption="msg://name" rows="5"/>
textArea
attributes: