Child pages
  • DEFAULTS

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Rev: 1381948887907

...

HTML Table
id
classservoy sSummary
Colgroup Tag
Column
padding0px
width80px

Column

Table Row (tr)
styleheight: 30px;
Table Head (th)
colspan2
Constants Summary
tbody
Table Body (tbody)
Table Row (tr)
Table Cell (td)
JSMethod
Table Cell (td)
#COMMANDCOMMAND_DEFAULT
Constants used for setting commands to "default".
tbody
Table Row (tr)
Table Cell (td)
JSMethod
Table Cell (td)
#COMMANDCOMMAND_NONE
Constant used for setting commands to "none".
tbody
Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
#DEFAULTDEFAULT
Constant used in various places to set properties to their default value.
Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
#IGNOREIGNORE
Constant used to remove a component from the tab sequence or set form navigator to IGNORE value.
Table Body (tbody)
Table Row (tr)
Table Cell (td)
Number
Table Cell (td)
#NONENONE
Constant used in various places to set properties to "none".

HTML Table
idconstant
classservoy sDetail
Colgroup Tag
Column
padding0px
width100%

Table Row (tr)
styleheight: 30px;
Table Head (th)
colspan1
Constants Details
Table Body (tbody)
idCOMMAND_DEFAULT
Table Row (tr)
idname
Table Cell (td)
COMMAND_DEFAULT
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
Constants used for setting commands to "default".
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
JSMethod
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript

...

var form = solutionModel.newForm('parentForm', 'db:/example_data/parent_table', null, false, 1200, 800);
form.onFindCmd = SM_DEFAULTS.COMMAND_DEFAULT; // This makes the find work like it does by default.

...

Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idCOMMAND_NONE
Table Row (tr)
idname
Table Cell (td)
COMMAND_NONE
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
Constant used for setting commands to "none".
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
JSMethod
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript

...

var form = solutionModel.newForm('parentForm', 'db:/example_data/parent_table', null, false, 1200, 800);
form.onFindCmd = SM_DEFAULTS.COMMAND_NONE; // This disables the find on the form.

...

Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idDEFAULT
Table Row (tr)
idname
Table Cell (td)
DEFAULT
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
Constant used in various places to set properties to their default value.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Number
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript

...

var form = solutionModel.newForm('parentForm', 'db:/example_data/parent_table', null, false, 1200, 800);
form.navigator = SM_DEFAULTS.DEFAULT; // Show the default navigator on the form.

...

Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idIGNORE
Table Row (tr)
idname
Table Cell (td)
IGNORE
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
Constant used to remove a component from the tab sequence or set form navigator to IGNORE value.
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Number
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript

...

// Create three fields. Based on how they are placed, by default they will come one
// after another in the tab sequence.
var fieldOne = form.newField('parent_table_id', JSField.TEXT_FIELD, 10, 10, 100, 20);
var fieldTwo = form.newField('parent_table_text', JSField.TEXT_FIELD, 10, 40, 100, 20);
var fieldThree = form.newField('parent_table_id', JSField.TEXT_FIELD, 10, 70, 100, 20);
// Set the third field come before the first in the tab sequence, and remove the

...

// second field from the tab sequence.
fieldOne.tabSeq = 2;
fieldTwo.tabSeq = SM_DEFAULTS.IGNORE;
fieldThree.tabSeq = 1;

...

Table Row (tr)
classlastDetailRow
Table Cell (td)

Table Body (tbody)
idNONE
Table Row (tr)
idname
Table Cell (td)
NONE
Table Row (tr)
iddes
Table Cell (td)
Div
classsIndent
Constant used in various places to set properties to "none".
Table Row (tr)
idret
Table Cell (td)
Returns
Div
classsIndent
Number
Table Row (tr)
idsam
Table Cell (td)
Sample
Div
classsIndent
Code Block
languagejavascript

...

var form = solutionModel.newForm('parentForm', 'db:/example_data/parent_table', null, false, 1200, 800);
form.navigator = SM_DEFAULTS.NONE; // Hide the navigator on the form.

...

Table Row (tr)
classlastDetailRow
Table Cell (td)