Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

how can i remove the field for one subtask only in jira postfunction/ anyother

kiranmai genkolla
Contributor
January 18, 2021

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

2 comments

Comment

Log in or Sign up to comment
John Funk
Community Champion
January 18, 2021

Hi @kiranmai genkolla  - It is not possible to hide a field for certain issues on a project and not other issues. It is either available for all issues or none. 

kiranmai genkolla
Contributor
January 18, 2021

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)
}
}

TAGS
AUG Leaders

Atlassian Community Events