Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How to restrict a custom Multi-select dropdown field to be not selected with more than two values

Akbar N February 25, 2019

Hi, 

I have scenario where the given multi-select custom field in create / edit screen should not be allowed to choose more than two values. 

Say the Multi-select field will have ten values listed, the user is allowed to select only two values and selecting more than two value will need to be thrown with an error before the request is getting created. 

Is there a way i can able to achieve it with Behavior plugin? 

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Alejandro Suárez - TecnoFor
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
March 3, 2019

Hi @Akbar N ,

You can use a Simple Script Validator:

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.fields.CustomField

CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager()

CustomField dosOpciones = customFieldManager.getCustomFieldObject(11111L)
def optionList = issue.getCustomFieldValue(dosOpciones).size()

optionList <= 2
Swarna Radha July 7, 2020

Hi @Alejandro Suárez - TecnoFor ,

 

I am getting error in this line 

def optionList = issue.getCustomFieldValue(dosOpciones).size()

 

Please advice.

 

Thanks,

Swarna 

Alejandro Suárez - TecnoFor
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
July 14, 2020

Hi @Swarna Radha you have to change the ID of the field to match your CustomField ID

TAGS
AUG Leaders

Atlassian Community Events