/
PCF - Multi Select

PCF - Multi Select

 

The PCF - Multi Select custom field lets you to select multiple options in the field based on dynamic data source. 

This custom field uses standard configuration settings.

How the field displays

  • This is an example of how the PCF - Multi Select custom field displays on the edit issue screen:

PCF - Multi Select custom field on the edit issue screen

When you update the issue, the new values appear on the view issue screen: 

PCF - Multi Select custom field on the view issue screen

Contents:

See also:

  • If the selected option type is set to Issue Picker, the field displays issues as selection options in the edit issue screen:

PCF - Multi Select custom field on the edit issue screen

When you update the issue, the new values appear on the view issue screen:

PCF - Multi Select custom field on the view issue screen

Examples

Example

Sample script

Sample display output

Example

Sample script

Sample display output

Using PCF - Multi Select with SIL data source

This script retrieves all groups associated with the current user.

return userGroups(currentUsername());

 

"developers (dev-group)"
"project-admins (pa-group)"
"qa-team (qa-group)"

Using PCF - Multi Select with SQL data source

This query retrieves all group names from the database. 

Before using SQL data source, ensure you've configured the JNDI settings as detailed in the SQL data source documentation.

select group_name from cwd_group;

 

"developers (dev-group)"
"project-admins (pa-group)"
"qa-team (qa-group)"

Related content