Is it possible to hide a tab on a view screen with a condition such as "Issue is not in status "X""?
Thanks
This is possible. This is not possible on the view screen. Behaviors can only be applied to the edit screen. Here's a link to the Adaptavist documentation on tab operations if you want to experiment with hiding tabs on the edit screen.
Hi Kian,
What format does the condition need to be?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Robert,
I'm sorry to walk back what I said earlier. It is only possible to hide tabs on the edit screen. Behaviors cannot be applied to the view screen.
If you want to hide the tab on the edit screen, the condition would look like this -
if (underlyingIssue.getStatus().name == "To Do") {
hideTab(1)
}
I will edit my original answer to indicate that it is only possible on the edit/create screen.
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.