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
Start with basic Jira Service Management terms and navigation. Then, discover how to solve customer problems efficiently.
Learning Path
Adopt ITSM practices to deliver exceptional service
Learn IT service management principles and configure Jira Service Management to implement ITSM processes.
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.