Child pages
  • UICONSTANTS

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)
#DATE_FORMATTERS_LENIENT
Property that can be set using application.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#DATE_FORMATTERS_ROLL_INSTEAD_OF_ADD
Property that can be set using application.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
#FULL_SCREEN
Value that can be used to specify that a dialog/window should completely fill the screen.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#TYPE_AHEAD_SHOW_POPUP_ON_FOCUS_GAIN
Property that can be set using application.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
String
Table Cell (td)
#TYPE_AHEAD_SHOW_POPUP_WHEN_EMPTY
Property that can be set using application.

HTML Table
idconstant
classservoy sDetail
Colgroup Tag
Column
padding0px
width100%

Table Row (tr)
styleheight: 30px;
Table Head (th)
colspan1
Constants Details
Table Body (tbody)
idDATE_FORMATTERS_LENIENT
classnode
Table Row (tr)
idname
Table Cell (td)
DATE_FORMATTERS_LENIENT
Table Row (tr)
iddes
Table Cell (td)

Property that can be set using application.setUIProperty() or element.putClientProperty().

If set on application it will affect all date formatted fields. CAUTION: this property must be set on application before the fields are created (for example in solution onOpen handler). Changing it after fields were created will not affect these existing fields.
If set on an element it will affect only that date formatted element/field (with priority over the application property).
Value can be true/false/null.

If set to false, date formatted fields will not allow input of out-of-bounds values (like 62 minutes means 2 minutes and +1 hour).
DEFAULT: true.

Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
// make all date formatted fields (created after this line is executed) not use lenient mode
application.setUIProperty(APP_UI_PROPERTY.DATE_FORMATTERS_LENIENT, false);
// make one date formatted field use lenient mode - overrides the application property set
forms.someForm.elements.typeAheadElement.putClientProperty(APP_UI_PROPERTY.DATE_FORMATTERS_LENIENT, true);
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idDATE_FORMATTERS_ROLL_INSTEAD_OF_ADD
classnode
Table Row (tr)
idname
Table Cell (td)
DATE_FORMATTERS_ROLL_INSTEAD_OF_ADD
Table Row (tr)
iddes
Table Cell (td)

Property that can be set using application.setUIProperty() or element.putClientProperty(). It is used only in Smart Client.

If set on application it will affect all date formatted fields. If set on an element it will affect only that date formatted element/field (with priority over the application property).
Value can be true/false/null.

If set to true, only selected part of the date will be affected when using up/down keys to cycle through values. (for example, pressing up when cursor is on minutes and minutes shows 59 will not result in hour change)
DEFAULT: false.

Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
// make all date formatted fields use roll instead of add
application.setUIProperty(APP_UI_PROPERTY.DATE_FORMATTERS_ROLL_INSTEAD_OF_ADD, true);
// make one date formatted field use add instead of roll - overrides the application property set
forms.someForm.elements.typeAheadElement.putClientProperty(APP_UI_PROPERTY.DATE_FORMATTERS_ROLL_INSTEAD_OF_ADD, false);
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idFULL_SCREEN
classnode
Table Row (tr)
idname
Table Cell (td)
FULL_SCREEN
Table Row (tr)
iddes
Table Cell (td)
Value that can be used to specify that a dialog/window should completely fill the screen.
Table Row (tr)
idret
Table Cell (td)
Returns
Number
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
application.showFormInDialog('customers',APP_UI_PROPERTY.FULL_SCREEN,APP_UI_PROPERTY.FULL_SCREEN,
     APP_UI_PROPERTY.FULL_SCREEN,APP_UI_PROPERTY.FULL_SCREEN,'My Title',true,true,'customers_dialog',true)
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idTYPE_AHEAD_SHOW_POPUP_ON_FOCUS_GAIN
classnode
Table Row (tr)
idname
Table Cell (td)
TYPE_AHEAD_SHOW_POPUP_ON_FOCUS_GAIN
Table Row (tr)
iddes
Table Cell (td)

Property that can be set using application.setUIProperty() or element.putClientProperty().

If set on application it will affect all TYPE-AHEAD fields. If set on an element it will affect only that TYPE-AHEAD element/field (with priority over the application property).
Value can be true/false/null.

If set to true, the affected TYPE_AHEAD(s) will not show the pop-up when gaining focus.
DEFAULT: true.

Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
// make all TYPE-AHEAD fields not show the pop-up when gaining focus
application.setUIProperty(APP_UI_PROPERTY.TYPE_AHEAD_SHOW_POPUP_ON_FOCUS_GAIN, false);
// make one TYPE-AHEAD field show the pop-up when gaining focus - overrides the application property set
forms.someForm.elements.typeAheadElement.putClientProperty(APP_UI_PROPERTY.TYPE_AHEAD_SHOW_POPUP_ON_FOCUS_GAIN, true);
Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idTYPE_AHEAD_SHOW_POPUP_WHEN_EMPTY
classnode
Table Row (tr)
idname
Table Cell (td)
TYPE_AHEAD_SHOW_POPUP_WHEN_EMPTY
Table Row (tr)
iddes
Table Cell (td)

Property that can be set using application.setUIProperty() or element.putClientProperty().

If set on application it will affect all TYPE-AHEAD fields. If set on an element it will affect only that TYPE-AHEAD element/field (with priority over the application property).
Value can be true/false/null.

If set to true, the affected TYPE_AHEAD(s) will not show the pop-up when the field content is empty.
DEFAULT: true.

Table Row (tr)
idret
Table Cell (td)
Returns
String
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript
// make all TYPE-AHEAD fields not show the pop-up when there is empty content in the field
application.setUIProperty(APP_UI_PROPERTY.TYPE_AHEAD_SHOW_POPUP_WHEN_EMPTY, false);
// make one TYPE-AHEAD field show the pop-up when there is empty content in the field - overrides the application property set
forms.someForm.elements.typeAheadElement.putClientProperty(APP_UI_PROPERTY.TYPE_AHEAD_SHOW_POPUP_WHEN_EMPTY, true);
Table Row (tr)
classlastDetailRow
Table Cell (td)