Hi,
i'm trying to set up a "send a custom email" script runner post function and I struggle to define the script of the condition to be met.
the condition is based on a checkboxes custom field. The field should be equal to a specific value.
I tried to select "Has string custom field value equal to " in the suggested examples but it does not work and I click Preview, the condition is set as false.
would you have any idea of the right code to write for a checkboxes custom field?
thanks in advance
melissa
You may find it easier to use the cfValues map which is passed in:
As Thanos said, with checkboxes it can be multiple. To check for a single specific checkbox being checked, and no others, you'd use:
cfValues['Name of field']*.value == ['An item']
thanks a lot to you both. It perfectly works. Just another question : is there a way to reformat the email body and configure a line break for each custom field ? many thanks for your help. it's great
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi... I'm not sure what you mean. If using html use <p> markers.. If you paste more of the template that would help us answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Melissa
Below there is a script where you can use in order to get the checkbox values
import com.atlassian.jira.component.ComponentAccessor import java.util.ArrayList def customField2 = customFieldManager.getCustomFieldObjectByName("checkbox") ArrayList listOfCheckBoxValues = issue.getCustomFieldValue(customField2) as ArrayList if (!listOfCheckBoxValues) return false if (listOfCheckBoxValues*.value.contains("option1")) return true else return false
A note. By default you can select more than one boxes therefore you always get a list of selected values. In case you want to use radio buttons where by default you can select only one value the script will be slightly different. Please let me know if you need further assistance.
Kind regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.