Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8? Click here and leave these dusty old pages behind!
Availability
This routine is available starting with SIL Engine™ 4.6.3.
Syntax
admGetCustomFieldOptions(fieldName, projectKeys, issueTypes)
Description
Retrieves the option list of a custom field for the specified context (projects and issue types).
All parameters are required, but if the project keys and issue types arrays are empty, the global context is going to be used.
Each option will reside on a separate line. In case of cascade selects, the child options will be prefixed with a space character.
The new line separator is system dependent (where the system can be Windows, Mac or Linux. The line separator can be either '\n', '\r' or '\r\n'.
This routine only handles custom fields of the following types: single select, multi select, radio buttons, checkboxes and cascading selects.
Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
fieldName | string | Yes | Name of custom field. |
projectKeys | string array | Yes (can be empty) | Project keys. |
issueTypes | string array | Yes (can be empty) | Issue types. |
Return type
string
Returns a string representing the options of the specified custom field.
Example
Example 1
admGetCustomFieldOptions("CF_CASCADE", {}, {});
Get the options of the "CF_CASCADE" custom field, using the global context.
Possible result as a string:
Parent option 1 Child option 1 Child option 2 Parent option 2 Child option 1 Child option 2
Example 2
admGetCustomFieldOptions("CF_SELECT", {"PRJ1", "PRJ2"}, {"Bug", "Task"});
Get the options of the "CF_SELECT" custom field, using the context for projects "PRJ1" and "PRJ2" and issue types "Bug" and "Task".
Possible result as a string:
Option 1 Option 2 Option 3
See also