I am trying to create a "walk through" effect for the user. So when an issue is created I would like to see an initial screen to gather basic information, after that is complete I would like to see it trigger another screen with more detailed information. Based on this information I would like to either move to the next status or one more screen asking for clarification on the previous screen. Is this possible... any ideas?
Nothing out of the box allows that. Scripting might work or there may be a plugin. I don't see the point in triggering a second screen to gather more information when the issue is being created since you don't mention a different user entering the information.
Have not tried this myself, but I can think of two options.
1: Some addons have the ability to dynamically redraw the screen while entering data.
Look at the "Live Fields" functions in the Power Scripts app https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=server&tab=overview
or the Dynamic Forms for Jira https://marketplace.atlassian.com/apps/1210820/dynamic-forms-for-jira?hosting=datacenter&tab=overview
2: Add-on JSU had a post function "follow up transition" that can be used to execute another transition on completion of the first one. That may allow a 2nd transition screen as it runs the 2nd transition. (orther add ons can do similar transition from with in a transition as well. Pwer Scripts, Update on transition (i think))
As I said I have not tried these myself in that use case, but its an idea.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not entirely surprised by that. the follow up transition stuff is tricky. Is it not executing the transition, or is it running the transition but not popping up the screen.
I'd remove the transition screen from the 2nd transition to make sure that the follow up is working correctly. Once you know it works, then add the screen back in and see if it still works, and if it pops up the 2nd screen.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You might be able to play tricks with validation. Not quiet the same thing, but similar.
You would have to have all the fields on the screen. (maybe you could use one of the addons i mentioned above to hide them. )
Then have the validator written with a condition (you can do that with JSU) that if A is set, then B must not be empty, and you can set the message to explain to the user what they need to do.
So that will give you that "pop back up" effect. But the screen wont significantly change.
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.