i have the 4 subtasks among that one subtask in close transition i want to hide the field .
Can anyone help me in this . How can i achieve this
Solved! Go to Solution.
i have achieved this using the behavior . and its working fine .
import com.onresolve.jira.groovy.user.FormField
String summaryId = "summary"
FormField summaryF = getFieldById(summaryId)
FormField selectCompeletedItemsF = getFieldById("customfield_14315")
FormField actionitem = getFieldById("customfield_14003")
if(actionName == "Close") //checking for the close transition
{
if(summaryF.value != "RBA Task for your group")
{
summaryF.setHidden(true)
actionitem.setHidden(true)
selectCompeletedItemsF.setFormValue(actionitem.value)
selectCompeletedItemsF.setReadOnly(true)
}
else{
summaryF.setHidden(true)
actionitem.setHidden(true)
selectCompeletedItemsF.setHidden(true)
}
}
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Get the most out of Jira Service Management
Solve customer problems efficiently and deliver outstanding service experiences.
Learning Path
Adopt ITSM practices to deliver exceptional service
Become familiar with the principles and practices that drive ITSM. Then, learn how to configure and use Jira Service Management to implement them.
Atlassian Certified Associate
Jira Service Management Agent Essentials certification
Prove you know what's essential to providing efficient and resolution-focused service in Jira Service Management.