How to define the Inline script for a field to give result as concatenation of other fields existing as Checkboxes.

Tanishka Chotwani February 9, 2015

Hi Team,

Request you to please assist in creating a scripted field with details of script where the result in the scripted field needs to be the concatenation of around 27 existing checkbox fields.

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 9, 2015

Which scripting addon are you using?

Tanishka Chotwani February 10, 2015

Script Runner

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 10, 2015

The basic code you need is issue.getCustomFieldValue(componentManager.getCustomFieldManager().getCustomFieldObjectByName("MySelect")) For a check-box, that will return an array of possible values, which you can then iterate through to concatenate, then you'll need to repeat that for each of your 27 checkbox fields.

Tanishka Chotwani February 10, 2015

Is this the default? I assume componentManager is the field name here. What do the other 2 do? getCustomFieldManager().getCustomFieldObjectByName("MySelect")

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 10, 2015

No, the field name is "MySelect". componentManager is the manager class you need to use to get a handle on the fields

Suggest an answer

Log in or Sign up to answer