Versions Compared

Key

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

Description

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

...

NameDescriptionValue
id

Unique Identifier

any
nameA name that describes the Text Area.Any
visiblemodesThe modes the 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 Area.'[[pagefunction, datatype, datapath ]]' operator(==,!=) 'value'
readonlyIf is true then text area cannot change value.true,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 nameNeeds to correspond to the CRMDO object field.
datatypeThe type of datapath fieldalias,java.lang.Integer, java.lang.String,...
refreshThe page parts that should be refreshed when the text area change.

page

mainmenu

main

details

tab,tabID

component,is_on_tab:is_on_menu:tabID:componentID

element,is_on_tab:is_on_menu:tabid:componentID:elementID

section,sectionID

area,areaID

rowshow many rows to display in text area1,2,3....
onchangeDefines the function call(s) triggered when text area value changed.<functions>…</functions>

Example

...

Expand
titleText Area

...

Image Removed

 

codetrue

Image Added

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

 

...