You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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:
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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.