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.
For information about supported option types, see Supported option types by custom field type.
For step-by-step setup guidelines, see Add and configure a new Power custom field.
How the field displays
This is an example of how the PCF - Multi Select custom field displays on the edit issue screen:
When you update the issue, the new values appear on the view issue screen:
If the selected option type is set to Issue Picker, the field displays issues as selection options in the edit issue screen:
When you update the issue, the new values appear on the view issue screen:
Examples
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)" |
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)" |