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

How to show/disable fields based on select list value through behavior?

Teja July 3, 2018

Hi,

I am trying to enable some fields when Roadmap Item = Tactical [single select type] else the fields will be disabled. Can someone help me and i tried below code doesn't seem working. 

def dropDown = getFieldById("customfield_15200")
if (dropDown.getValue() == "Tactical") {

def ccgroup = getFieldByName("Name")
def ccgroup1 = getFieldByName("Solution")
def ccgroup2 = getFieldByName("Theme/s") //Group
def ccgroup3 = getFieldByName("Driver Category")

ccgroup.setReadOnly(false)
ccgroup1.setReadOnly(false)
ccgroup2.setReadOnly(false)
ccgroup3.setReadOnly(false)
}

 Thanks

Teju Naik

2 answers

1 accepted

Suggest an answer

Log in or Sign up to answer
1 vote
Answer accepted
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 3, 2018

Hello,

Try like this:

def dropDown = getFieldById("customfield_15200")

if (dropDown.getValue().toString() == "Tactical") {

def ccgroup = getFieldByName("Name")
def ccgroup1 = getFieldByName("Solution")
def ccgroup2 = getFieldByName("Theme/s") //Group
def ccgroup3 = getFieldByName("Driver Category")

ccgroup.setReadOnly(true)
ccgroup1.setReadOnly(true)
ccgroup2.setReadOnly(true)
ccgroup3.setReadOnly(true)
}
Teja July 5, 2018

Hi @Alexey Matveev,

That worked... Thanks a lot.

Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 5, 2018

You are welcome!

0 votes
Eduard Diez
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 11, 2019

Hey, Morning...

Is possible to do the same or similar in CLOUD, 

Do you know how I can do a field in mode only read in a transition that I want, and in other transitions put the same customfield like a can write.

Is possible this? @Alexey Matveev

Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 11, 2019

Hello,

It is not possible on Jira Cloud. 

TAGS
AUG Leaders

Atlassian Community Events