How to set a custom field as mandatory based on Select List (single choice) field value ?

roniz February 21, 2017

Hi,

In the "create" screen I have a Select List (single choice) field with optional values: X and Y

and another Text Field (single line).

I want to make the Text Field mandatory but only if the value in the Select List is X.

Is it a configured JIRA option? if yes- how can I do this?

 if not- what is the simplest way to achieve this?

1 answer

0 votes
Tej February 22, 2017

Hi,

Required ScriptRunner plugin, add this validation at required transition 

Here Single Select custom field (singleSelect) with Options X and Y where if X is selected then Text Field (textField) required 

(cfValues['singleSelect']?.value == 'X' && cfValues['textField'] != null) || (cfValues['singleSelect']?.value == "Y")

-

Tej

roniz February 22, 2017

thanks,

I see that the plugin is not free- Is there a free way to achieve this?

Tej February 23, 2017

I don't think we can achieve without the plugin!

roniz February 23, 2017

ok sad

thanks

Suggest an answer

Log in or Sign up to answer