oo

Picklist Fields

Liferay 7.4 U72+/GA72+

Picklists define lists of text values usable as single select or multi-select fields in object definitions. By default, single select fields appear as drop-down menus, while multi-select fields appear as checkboxes.

You can configure a single select field to use a default value, which can be static or dynamic. Additionally, you can use single select fields to define custom states for object entries and integrate validations, actions, and workflow processes with the object definition to implement complex business logic.

Setting Default Values

  1. Begin editing the desired Picklist field.

  2. Go to the Advanced tab and toggle Use Default Value.

    Toggle Use Default Value and select either Input as Value or Expression Builder.

  3. Determine how to set the default value.

    Input as Value: Select a value from the picklist.

    Expression Builder: Create an expression that sets the value dynamically.

  4. Click Save.

Now when users create entries, the picklist field defaults to the set value.

important

You cannot delete a list if it is used by an object field, though you can edit and remove list items at any time.

Updating or deleting a picklist item automatically updates all object entries using the item value.

Using Picklist Fields with APIs

When making POST, PATCH, and PUT API calls for objects that include a picklist field, you must use the following request payload formats for Picklist and Multiselect Picklist fields, respectively.

Picklist Field Type

{
      "picklistExample": {
        "key": "firstOption",
        "name": "First Option"
      }
}

Multiselect Picklist Field Type

{
      "picklistExample": [
        {
          "key": "firstOption",
          "name": "First Option"
        },
        {
          "key": "secondOption",
          "name": "Second Option"
        }
      ]
}
Feature: