ddHiCreateCellComboField
ddHiCreateCellComboField(?names_fieldName[?promptt_fieldPrompt] [?valuet_currentValue] [?defValuet_defaultValue] [?callbackg_callback] [?editableg_editable] [?enabledg_enabled] [?invisibleg_invisible] [?nextFieldg_nextField] [?toolTipt_toolTip] [?validationTypeg_validationType] [?highlightTypeg_highlightType] ) =>r_comboField
Description
Creates a customized Cell combo field, which is an extension of a regular combo field, for selecting cells.
Arguments
|
The handle to this field within a form. To reference it, use |
|
|
A string specifying the prompt for the field. To reference it, use |
|
|
The initial and current values of this field. To reference it, use |
|
|
The default value of the field. This value is equal to the initial entry in t_currentValue, if t_defaultValue is not specified. To reference the default value, use |
|
|
A string, symbol, or function object type callback that is executed if the value of the field changes. If a new value is typed in, the callback is called when the field has “lost focus”. This happens for example, when you move the pointer outside the form, or tab to another field, or when you select any button in the form. |
|
|
If set to |
|
|
Specifies whether the field is enabled. The default value is |
|
|
Specifies whether the field is invisible. The default value is |
|
|
Symbol or string indicating the next field to bring into focus when the Tab key is pressed. If you specify |
|
|
The tool tip that is displayed when the pointer hovers over the field. |
|
|
Specifies the criteria that determines if the input is valid or not. Acceptable values (symbol) are: |
|
|
Specifies when and how a widget is to be highlighted. Acceptable values (symbol) are: The first three values have the same definitions as given for the g_highlighType argument of hiHighlightField.
Setting the property to |
|
Value Returned
Examples
A Cell combo field is created.
trCreateBlockCellName = ddHiCreateCellComboField( ?name 'cellName ?prompt "Cells" ?defValue "" ?value "" ?callback "trCreateBlockCellNameCB( trCreateBlockForm 'cellName )"
)
Related Topic
Return to top