Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel
nameblue

Text Area

This element is used to display a text area on the page.

Attributes

...

NameDescriptionValue
id

Unique Identifier.

anyAny
nameA name that describes the Text AreaThe text area name.Any
visiblemodesThe modes the button text area should be visible.A comma-separated list of the modes (read / , new / , edit)
visibilityconditionsThe conditions that should be met in order to display the Text Areatext area.'[[pagefunction, datatype, datapath ]]' operator(==,!=) 'value'
readonlyIf true then the text area value cannot be changed.true or false
readonlyconditions

The conditions that should be met in order to display the text area in read only mode.

'[[pagefunction, datatype, datapath ]]' operator(==,!=) 'value'
datapathThe data path field name.Needs to correspond to the CRMDO object field
datatypeThe type of datapath field.alias, java.lang.Integer, java.lang.String, ...
refreshThe parts of the page that should be refreshed when the text area value is changed.

page

mainmenu

main

details

tab,tabID

rowshow many rows to display in text area1,2,3....

Examples

Text Area

Image Removed

 

component,is_on_tab:is_on_menu:tabID:componentID

element,is_on_tab:is_on_menu:tabid:componentID:elementID

section,sectionID

area,areaID

rowsNumber of rows to be displayed in the text area.Any number
onchangeDefines the function call(s) triggered when the text area value is changed.<functions>…</functions>

Example

true
Expand
titleText Area

Image Added

Code Block
themeEclipse
languagexml
titleText Area
linenumbers
<textarea>
<id>ProdDesc_Value</id> <name>Description</name> <datapath>description</datapath>
	<id>areaDescription</id>
	<label>key_description</label>
	<datapath>description</datapath>
	<rows>5</rows>
</textarea>

 

...