Skip to main content
Version: v20 R4 BETA

Objects


Type

MANDATORY SETTING

This property designates the type of the active or inactive form object.

JSON Grammar

NameData TypePossible Values
typestring"button", "buttonGrid", "checkbox", "combo", "dropdown", "groupBox", "input", "line", "list", "listbox", "oval", "picture", "pictureButton", "picturePopup", "plugin", "progress", "radio", "rectangle", "ruler", "spinner", "splitter", "stepper", "subform", "tab", "text", "view", "webArea", "write"

Objects Supported

4D View Pro area - 4D Write Pro area - Button - Button Grid - Check Box - Combo Box - Drop-down List - Group Box - Hierarchical List - List Box - List Box Column - List Box Footer - List Box Header - Picture Button - Picture Pop-up Menu - Plug-in Area - Progress indicator - Radio Button -Spinner - Splitter - Static Picture - Stepper - Subform - Tab control - Text Area - Web Area


Object Name

Each active form object is associated with an object name. Each object name must be unique.

Object names are limited to a size of 255 bytes.

When using 4D’s language, you can refer to an active form object by its object name (for more information about this, refer to Object Properties in the 4D Language Reference manual).

For more information about naming rules for form objects, refer to Identifiers section.

JSON Grammar

NameData TypePossible Values
namestringAny allowed name which does not belong to an already existing object

Objects Supported

4D View Pro area - 4D Write Pro area - Button - Button Grid - Check Box - Combo Box - Drop-down List - Group Box - Hierarchical List - List Box - List Box Column - List Box Footer - List Box Header - Picture Button - Picture Pop-up Menu - Plug-in Area - Progress indicator - Spinner - Splitter - Static Picture - Stepper - Radio Button - Subform - Tab control - Text Area - Web Area


Save value

This property is available when the Save Geometry option is checked for the form.

This feature is only supported for objects that contribute to the overall geometry of the form. For example, this option is available for check boxes because their value can be used to hide or display additional areas in the window.

Here is the list of objects whose value can be saved:

ObjectSaved value
Check BoxValue of associated variable (0, 1, 2)
Drop-down ListNumber of selected row
Radio ButtonValue of associated variable (1, 0, True or False for buttons according to their type)
Tab controlNumber of selected tab

JSON Grammar

NameData TypePossible Values
memorizeValuebooleantrue, false

Objects Supported

Check Box - Drop-down List - Radio Button - Tab control


Variable or Expression

See also Expression for Selection and collection type list box columns.

This property specifies the source of the data. Each active form object is associated with an object name and a variable name. The variable name can be different from the object’s name. In the same form, you can use the same variable several times while each object name must be unique.

Variable name size is limited to 31 bytes. See Identifiers section for more information about naming rules.

The form object variables allow you to control and monitor the objects. For example, when a button is clicked, its variable is set to 1; at all other times, it is 0. The expression associated with a progress indicator lets you read and change the current setting.

Variables or expressions can be enterable or non-enterable and can receive data of the Text, Integer, Numeric, Date, Time, Picture, Boolean, or Object type.

JSON Grammar

NameData TypePossible Values
dataSourcestring, or string array
  • 4D variable, field name, or any expression.
  • Empty string for dynamic variables.
  • String array (collection of array names) for a hierarchical listbox column]
  • Expressions

    You can use an expression as data source for an object. Any valid 4D expression is allowed: simple expression, object property, formula, 4D function, project method name or field using the standard [Table]Field syntax. The expression is evaluated when the form is executed and reevaluated for each form event. Note that expressions can be assignable or non-assignable.

    If the value entered corresponds to both a variable name and a method name, 4D considers that you are indicating the method.

    Dynamic variables

    You can leave it up to 4D to create variables associated with your form objects (buttons, enterable variables, check boxes, etc.) dynamically and according to your needs. To do this, simply leave the "Variable or Expression" property (or dataSource JSON field) blank.

    When a variable is not named, when the form is loaded, 4D creates a new variable for the object, with a calculated name that is unique in the space of the process variables of the interpreter (which means that this mechanism can be used even in compiled mode). This temporary variable will be destroyed when the form is closed. In order for this principle to work in compiled mode, it is imperative that dynamic variables are explicitly typed. There are two ways to do this:

    • You can set the type using the Expression type property.
    • You can use a specific initialization code when the form is loaded that uses, for example, the VARIABLE TO VARIABLE command:
     If(Form event code=On Load)
    var $init : Text
    $Ptr_object:=OBJECT Get pointer(Object named;"comments")
    $init:=""
    VARIABLE TO VARIABLE(Current process;$Ptr_object->;$init)
    End if

    In the 4D code, dynamic variables can be accessed using a pointer obtained with the OBJECT Get pointer command. For example:

      // assign the time 12:00:00 to the variable for the "tstart" object
    $p :=OBJECT Get pointer(Object named;"tstart")
    $p->:=?12:00:00?

    There are two advantages with this mechanism:

    • On the one hand, it allows the development of "subform" type components that can be used several times in the same host form. Let us take as an example the case of a datepicker subform that is inserted twice in a host form to set a start date and an end date. This subform will use objects for choosing the date of the month and the year. It will be necessary for these objects to work with different variables for the start date and the end date. Letting 4D create their variable with a unique name is a way of resolving this difficulty.
    • On the other hand, it can be used to limit memory usage. In fact, form objects only work with process or inter-process variables. However, in compiled mode, an instance of each process variable is created in all the processes, including the server processes. This instance takes up memory, even when the form is not used during the session. Therefore, letting 4D create variables dynamically when loading the forms can save memory.

    Array List Box

    For an array list box, the Variable or Expression property usually holds the name of the array variable defined for the list box, and for each column. However, you can use a string array (containing arrays names) as dataSource value for a list box column to define a hierarchical list box.

    Objects Supported

    4D View Pro area - 4D Write Pro area - Button - Button Grid - Check Box - Combo Box - Drop-down List - Hierarchical List - List Box - List Box Column - List Box Header - List Box Footer - Picture Pop-up Menu - Plug-in Area - Progress indicator - Radio Button - Spinner - Splitter - Stepper - Subform - Tab control - Web Area


    Expression Type

    This property is called Data Type in the Property List for selection and collection type list box columns and for Drop-down Lists associated to an object or an array.

    Specify the data type for the expression or variable associated to the object. Note that main purpose of this setting is to configure options (such as display formats) available for the data type. It does not actually type the variable itself. In view of project compilation, you must declare the variable.

    However, this property has a typing function in the following specific cases:

    • Dynamic variables: you can use this property to declare the type of dynamic variables.
    • List Box Columns: this property is used to associate a display format with the column data. The formats provided will depend on the variable type (array type list box) or the data/field type (selection and collection type list boxes). The standard 4D formats that can be used are: Alpha, Numeric, Date, Time, Picture and Boolean. The Text type does not have specific display formats. Any existing custom formats are also available.
    • Picture variables: you can use this menu to declare the variables before loading the form in interpreted mode. Specific native mechanisms govern the display of picture variables in forms. These mechanisms require greater precision when configuring variables: from now on, they must have already been declared before loading the form — i.e., even before the On Load form event — unlike other types of variables. To do this, you need either for the statement C_PICTURE(varName) to have been executed before loading the form (typically, in the method calling the DIALOG command), or for the variable to have been typed at the form level using the expression type property. Otherwise, the picture variable will not be displayed correctly (only in interpreted mode).

    JSON Grammar

    NameData TypePossible Values
    dataSourceTypeHintstring
  • standard objects: "integer", "boolean", "number", "picture", "text", date", "time", "arrayText", "arrayDate", "arrayTime", "arrayNumber", "collection", "object", "undefined"
  • list box columns: "boolean", "number", "picture", "text", date", "time". Array/selection list box only: "integer", "object"
  • Objects Supported

    Check Box - Combo Box - Drop-down List - Input - List Box Column - List Box Footer - Plug-in Area - Progress indicator - Radio Button - Ruler - Spinner - Stepper - Subform - Tab Control


    CSS Class

    A list of space-separated words used as class selectors in css files.

    JSON Grammar

    NameData TypePossible Values
    classstringOne string with CSS name(s) separated by space characters

    Objects Supported

    4D View Pro area - 4D Write Pro area - Button - Button Grid - Check Box - Combo Box - Drop-down List - Group Box - Hierarchical List - List Box - Picture Button - Picture Pop-up Menu - Plug-in Area - Radio Button - Static Picture - Subform - Text Area - Web Area


    Collection or entity selection

    To use collection elements or entities to define the row contents of the list box.

    Enter an expression that returns either a collection or an entity selection. Usually, you will enter the name of a variable, a collection element or a property that contain a collection or an entity selection.

    The collection or the entity selection must be available to the form when it is loaded. Each element of the collection or each entity of the entity selection will be associated to a list box row and will be available as an object through the This keyword:

    • if you used a collection of objects, you can call This in the datasource expression to access each property value, for example This.<propertyPath>.
    • if you used an entity selection, you can call This in the datasource expression to access each attribute value, for example This.<attributePath>.

    If you used a collection of scalar values (and not objects), 4D allows you to display each value by calling This.value in the datasource expression. However in this case you will not be able to modify values or to access the current object (see below).

    JSON Grammar

    NameData TypePossible Values
    dataSourcestringExpression that returns a collection or an entity selection.

    Objects Supported

    List Box


    Data Source

    Specify the type of list box.

    • Arrays(default): use array elements as the rows of the list box.
    • Current Selection: use expressions, fields or methods whose values will be evaluated for each record of the current selection of a table.
    • Named Selection: use expressions, fields or methods whose values will be evaluated for each record of a named selection.
    • Collection or Entity Selection: use collection elements or entities to define the row contents of the list box. Note that with this list box type, you need to define the Collection or Entity Selection property.

    JSON Grammar

    NameData TypePossible Values
    listboxTypestring"array", "currentSelection", "namedSelection", "collection"

    Objects Supported

    List Box


    Plug-in Kind

    Name of the plug-in external area associated to the object. Plug-in external area names are published in the manifest.json file of the plug-in.

    JSON Grammar

    NameData TypePossible Values
    pluginAreaKindstringName of the plug-in external area (starts with a % character)

    Objects Supported

    Plug-in Area


    Radio Group

    Enables radio buttons to be used in coordinated sets: only one button at a time can be selected in the set.

    JSON Grammar

    NameData TypePossible Values
    radioGroupstringRadio group name

    Objects Supported

    Radio Button


    Title

    Allows inserting a label on an object. The font and the style of this label can be specified.

    You can force a carriage return in the label by using the \ character (backslash).

    To insert a \ in the label, enter "\\".

    By default, the label is placed in the center of the object. When the object also contains an icon, you can modify the relative location of these two elements using the Title/Picture Position property.

    For application translation purposes, you can enter an XLIFF reference in the title area of a button (see Appendix B: XLIFF architecture).

    JSON Grammar

    NameData TypePossible Values
    textstringany text

    Objects Supported

    Button - Check Box - List Box Header - Radio Button - Text Area


    Variable Calculation

    This property sets the type of calculation to be done in a column footer area.

    The calculation for footers can also be set using the LISTBOX SET FOOTER CALCULATION 4D command.

    There are several types of calculations available. The following table shows which calculations can be used according to the type of data found in each column and indicates the type automatically affected by 4D to the footer variable (if it is not typed by the code):

    CalculationNumTextDateTimeBoolPictfooter var type
    MinimumXXXXXSame as column type
    MaximumXXXXXSame as column type
    SumXXXSame as column type
    CountXXXXXXLongint
    AverageXXReal
    Standard deviation(*)XXReal
    Variance(*)XXReal
    Sum squares(*)XXReal
    Custom ("none")XXXXXXAny

    (*) Only for array type list boxes.

    Only declared or dynamic variables can be used to display footer calculations. Other kinds of expressions such as Form.value are not supported.

    Automatic calculations ignore the shown/hidden state of list box rows. If you want to restrict a calculation to only visible rows, you must use a custom calculation.

    Null values are not taken into account for any calculations.

    If the column contains different types of values (collection-based column for example):

    • Average and Sum only take numerical elements into account (other element types are ignored).
    • Minimum and Maximum return a result according to the usual type list order as defined in the collection.sort() function.

    Using automatic calculations in footers of columns based upon expressions has the following limitations:

    • it is supported with all list box types when the expression is "simple" (such as [table]field or this.attribute),
    • it is supported but not recommended for performance reasons with collection/entity selection list boxes when the expression is "complex" (other than this.attribute) and the list box contains a large number of rows,
    • it is not supported with current selection/named selection list boxes when the expression is "complex". You need to use custom calculations.

    When Custom ("none" in JSON) is set, no automatic calculations are performed by 4D and you must assign the value of the variable in this area by programming.

    JSON Grammar

    NameData TypePossible Values
    variableCalculationstring"none", "minimum", "maximum", "sum", "count", "average", "standardDeviation", "variance", "sumSquare"

    Objects Supported

    List Box Footer