Child pages
  • ELEMENT_TYPES

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Hidden
DO NOT EDIT THE CONTENT OF THIS PAGE DIRECTLY, UNLESS YOU KNOW WHAT YOU'RE DOING.		THE STRUCTURE OF THE CONTENT IS VITAL IN BEING ABLE TO EXTRACT CHANGES FROM THE PAGE AND MERGE THEM BACK INTO SERVOY SOURCE


HTML Table
classservoy sSummery
Colgroup Tag
Column
padding0px
width80px

Column

Table Row (tr)
styleheight: 30px;
Table Head (th)
colspan2
Constants Summery
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#BUTTON
Constant representing an element of the Button type.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#CALENDAR
Constant representing an element of the Calendar type.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#CHECK
Constant representing an element of the Check type.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#GROUP
Constant representing a Group of elements.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#IMAGE_MEDIA
Constant representing an element of the ImageMedia type.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#LABEL
Constant representing an element of the Label type.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#PASSWORD
Constant representing an element of the Password type.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#PORTAL
Constant representing an element of the Portal type.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#RADIOS
Constant representing an element of the Radios type.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#TABPANEL
Constant representing an element of the Tabpanel type.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#TEXT_AREA
Constant representing an element of the TextArea type.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#TEXT_FIELD
Constant representing an element of the TextField type.

HTML Table
idconstant
classservoy sDetail
Colgroup Tag
Column
padding0px
width100%

Table Row (tr)
styleheight: 30px;
Table Head (th)
colspan1
Constants Details
Table Body (tbody)
idBUTTON
classnode
Table Row (tr)
idname
Table Cell (td)
BUTTON
Table Row (tr)
iddes
Table Cell (td)
Constant representing an element of the Button type.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the Button type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.BUTTON)
{
     // element is a Button component
}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idCALENDAR
classnode
Table Row (tr)
idname
Table Cell (td)
CALENDAR
Table Row (tr)
iddes
Table Cell (td)
Constant representing an element of the Calendar type.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the Calendar type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.CALENDAR)
{
     // element is a Calendar field
}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idCHECK
classnode
Table Row (tr)
idname
Table Cell (td)
CHECK
Table Row (tr)
iddes
Table Cell (td)
Constant representing an element of the Check type.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the Check type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.CHECK)
{
     // element is a Check(box) field
}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idGROUP
classnode
Table Row (tr)
idname
Table Cell (td)
GROUP
Table Row (tr)
iddes
Table Cell (td)
Constant representing a Group of elements.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the TextField type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.GROUP)
{
     // element is a group element
}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idIMAGE_MEDIA
classnode
Table Row (tr)
idname
Table Cell (td)
IMAGE_MEDIA
Table Row (tr)
iddes
Table Cell (td)
Constant representing an element of the ImageMedia type.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the ImageMedia type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.IMAGE_MEDIA)
{
     // element is a Image Media field
}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idLABEL
classnode
Table Row (tr)
idname
Table Cell (td)
LABEL
Table Row (tr)
iddes
Table Cell (td)
Constant representing an element of the Label type.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the Label type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.LABEL)
{
     // element is a Label component
}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idPASSWORD
classnode
Table Row (tr)
idname
Table Cell (td)
PASSWORD
Table Row (tr)
iddes
Table Cell (td)
Constant representing an element of the Password type.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the Password type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.PASSWORD)
{
     // element is a Password component
}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idPORTAL
classnode
Table Row (tr)
idname
Table Cell (td)
PORTAL
Table Row (tr)
iddes
Table Cell (td)
Constant representing an element of the Portal type.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the Portal type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.PORTAL)
{
     // element is a Portal component
}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idRADIOS
classnode
Table Row (tr)
idname
Table Cell (td)
RADIOS
Table Row (tr)
iddes
Table Cell (td)
Constant representing an element of the Radios type.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the Radios type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.RADIOS)
{
     // element is a Radios field.
}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idTABPANEL
classnode
Table Row (tr)
idname
Table Cell (td)
TABPANEL
Table Row (tr)
iddes
Table Cell (td)
Constant representing an element of the Tabpanel type.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the Tabpanel type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.TABPANEL)
{
     // element is a Tabpanel component
}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idTEXT_AREA
classnode
Table Row (tr)
idname
Table Cell (td)
TEXT_AREA
Table Row (tr)
iddes
Table Cell (td)
Constant representing an element of the TextArea type.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the TextArea type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.TEXT_AREA)
{
     // element is a TextArea field
}
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idTEXT_FIELD
classnode
Table Row (tr)
idname
Table Cell (td)
TEXT_FIELD
Table Row (tr)
iddes
Table Cell (td)
Constant representing an element of the TextField type.
Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
//the return value for an element of the TextField type, as returned by the following code
var etype = elements.elementName.getElementType();
if (etype == ELEMENT_TYPES.TEXT_FIELD)
{
     // element is a text field
}
Table Row (tr)
classlastDetailRow
Table Cell (td)