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

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

kiranmai genkolla 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 answers

1 accepted

Suggest an answer

Log in or Sign up to answer
0 votes
Answer accepted
kiranmai genkolla 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)
}
}

0 votes
John Funk
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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. 

TAGS
AUG Leaders

Atlassian Community Events