Skip to main content
Version: v20 R4 BETA

Combo Box

A combo box is similar to a drop-down list, except that it accepts text entered from the keyboard and has additional options.

Fundamentally, you treat a combo box as an enterable area that uses its object, array or a choice list as the set of default values.

Handling combo boxes

Use the On Data Change event to manage entries into the enterable area, as you would for any input form object.

You initialize a combo box in exactly the same way as a drop-down list: using an object, an array, or a choice list.

Using an object

This feature is only available in 4D projects.

An object encapsulating a collection can be used as the data source of a combo box. The object must contain the following properties:

PropertyTypeDescription
valuesCollectionMandatory - Collection of scalar values. All values must be of the same type. Supported types:
  • strings
  • numbers
  • dates
  • times
  • If empty or not defined, the combo box is empty
    currentValuesame as CollectionText entered by the user

    If the object contains other properties, they are ignored.

    When the user enters text into the combo box, the currentValue property of the object gets the entered text.

    Using an array

    Please refer to Using an array in the drop-down list page for information about how to initialize the array.

    When the user enters text into the combo box, the 0th element of the array gets the entered text.

    Using a choice list

    If you want to use a combo box to manage the values of an input area (listed field or variable), 4D lets you reference the field or variable directly as the form object's data source. This makes it easier to manage listed fields/variables.

    If you use a hierarchical list, only the first level is displayed and can be selected.

    To associate a combo box with a field or variable, you can just enter the name of the field or variable directly in the Variable or Expression of the form object in the Property List.

    When the form is executed, 4D automatically manages the combo box during input or display: when a user chooses a value, it is saved in the field; this field value is shown in the combo box when the form is displayed:

    Please refer to Using a choice in the drop-down list page for more information.

    Options

    Combo box type objects accept two specific options:

    • Automatic insertion: enables automatically adding a value to the data source when a user enters a value that is not found in the list associated with the combo box.
    • Excluded List (list of excluded values): allows setting a list whose values cannot be entered in the combo box. If an excluded value is entered, it is not accepted and an error message is displayed.

    Associating a list of required values is not available for combo boxes. In an interface, if an object must propose a finite list of required values, then you must use a drop-down list object.

    Supported Properties

    Alpha Format - Bold - Bottom - Choice List - Class - Date Format - Expression Type - Font - Font Color - Font Size - Height - Help Tip - Horizontal Sizing - Italic - Left - Object Name - Right - Time Format - Top - Type - Underline - Variable or Expression - Vertical Sizing - Visibility - Width