Hi,
I wonder is it possible to change tabs automatically when edit case in specified status?
In a whole workflow, we have status A, status B and Status C, in edit issue screen there are tab A, tab B and tab C. When issue is in status A, and click "Edit", I want to show tab A in screen. And if issue is in status B, when user click "Edit", it will show tab B in edit screen. And so does tab C (when issue in status C).
Can it be done by scriptrunner?
Thank you very much!
Claire
Hi,
That is indeed possible using behaviours. For example :
if (underlyingIssue.getStatus().getName() == "A"){
hideTab("B")
hideTab("C")
}
Antoine
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.