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
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)
}
Hi @Alexey Matveev,
That worked... Thanks a lot.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are welcome!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
It is not possible on Jira Cloud.
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.