Add a Dropdown list to a table column

Use the dropdown list to change the content of a row in a table with multiple rows.

The following example shows a list of digital camera products. Each digital camera has more than one free add-on associated with it. After the user selects a camera, they can select the free add-on from the related dropdown list.



To use a dropdown list, store the information in a previously defined database, .NET method, or Web service call.

For example, when creating a Staff Location Details table, enter the location details for each Staff member. Office location details appear in the Location table of the database. Map the Location column of the Staff Location Details table to the Location table of the database.

At runtime, when you add a row to the Staff Location Details table and enter location, the dropdown list is populated with the contents of the Location table. You can then select the location for a specific staff person.

For example, if Bryan Walsh works in the London office, select London from the Location list.



  1. Add columns to a table.
  2. On the Data type list, select String.
  3. On the Type list, select Dropdown.
  4. On the Display mode list, select either Text or Value and text.
    For Value and text, additionally provide Text width% and Value width%.
  5. On the Data source list, select one of the following options:
    • Dynamic: To use dynamic data in a dropdown list in a table column, create or select a .NET method, Web service, or DB query action.

      Important The used action should return array type parameter. Assign the Table to the return array parameter. Select the <TableName.TableColumn.Text> and <TableName.TableColumn.Value> properties in the required array columns.

    • Lookup: To use a predefined lookup, click Lookup and select the lookup to use. See Manage a lookup.

    • Static: To use a static value, do the following:

      1. Click .

      2. Enter a Name and Value that appears on the dropdown list at runtime. For example, Please select.

      3. Click Add .

        The item is added to the list. Create as many items as required.

      4. To make the item as default, on the list of items, click the Default button for the item. This item populates the field by default at runtime. For example, for a Title list, add the static items, such as Mr., Mrs., Miss, and select Mrs as the default.

      5. To reorder the list, use . By default, the dropdown list items appear in the order in which they are defined.

    Note This option is available for normal and capture forms. You can dynamically populate the dropdown list for capture table cell of a choice type. However, for forms prior to 7.6.0, the default value set in the static data source is applied even if the dynamic data source is configured. You must regenerate the forms to allow dynamic population of data.
  6. Click Save.