...
You can use any option type with any type of the custom field. For more information on custom fields, go to the User Guide.
Option type | Description | Example | ||||
---|---|---|---|---|---|---|
Component Picker | This option is rendered as a project component. | This is the SIL script to get project components. The example below shows how to get all components that exist in the "TEST" project. The components will be added as options to the custom field which uses this SIL script as data source.
This is the SQL script to get all components:
To see it in action, see the PCF - Checkbox page. | ||||
Group Picker | An option is rendered as a group. | This is the SIL script to get groups:
It gets all groups to which current user belongs. The groups will be added as options to the custom field which uses this SIL script as data source. This is the SQL script to get all groups:
To see it in action, check out the PCF - Multi Select page. | ||||
Issue Picker | An option is rendered as an issue. | This is the SIL script to get issues:
It gets all issues previously created. The issues will be added as options to the custom field which uses this SIL script as data source. This is the SQL script to get all issue keys:
To see it in action, check out the PCF - Single Autocomplete page. | ||||
Project Picker | An option is rendered as a project. | This is the SIL script to get projects:
It gets all projects previously created. The projects will be added as options to the custom field which uses this SIL script as data source. This is the SQL script to get all projects:
To see it in action, check out the PCF - Radio Buttons page. | ||||
User Picker | An option is rendered as a user. | This is the SIL script to get users:
It gets all users existing in some groups (in this case, "jira-users") and adds the usernames that match the search as options to the custom fields using this data source. This is the SQL script to get all users:
To see it in action, check out the PCF - Multiple Autocomplete page. | ||||
Version Picker | An option is rendered as a version. | This is the SIL script to get versions:
It gets all versions existing in the "TEST" project. The versions will be added as options to the custom field which uses this SIL script as data source. This is the SQL script to get all versions.
To see it in action, check out the PCF - Single Select page. |