The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Better way to hide most of fields

Marcela Maslanova
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 6, 2022

We are currently masking a lot of fields in our form and only a few are on a create screen for new Stories reported by a customer.

We are using a code similar to my snippet, but I wonder if there is a way to hide all fields on the screen and then enable only some. It would be definitely easier to maintain.

Snippet from our template:

def fieldNamesToHide = ['A', 'B', 'C', 'D']
for (fieldName in fieldNamesToHide) {
   def field = getFieldByName(fieldName)
   field.setHidden(true)
}

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Answer accepted
Adrien Low _ServiceRocket_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
December 6, 2022

Hello @Marcela Maslanova ,

Perhaps you can try the below code:-

for(def i: getFieldScreen().getTabs()) {
for(def j: i.getFieldScreenLayoutItems()){
getFieldById(j.getFieldId()).setHidden(true)
}
}

The code above will hide all fields available on the screen.

Hope this helps.

Regards.

Marcela Maslanova
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 6, 2022

Awesome and so easy! It does work and mask everything with error, but nevermind that. I can hide only some tabs.

btw do you have any idea why some fields refused to be hidden? I already found out that some are special and need to be accessed by Id, not by name. Nevertheless I'm unable to hide for example Sprint.

TAGS
AUG Leaders

Atlassian Community Events