In the Classic Boards, if I create a subtask within GreenHopper (using the "cog" menu, Add Sub-task), some of the fields (Assignee, Component, etc) are prepopulated with the partents values. This is usually desirable and can save a lot of time.
However, in the GreenHopper 6 boards, the equivalent action does not provide these prepopulated fields. There are some, like reporter, that default to the user doing the action, but not Assignee, Component, etc.
Is there a way in GreenHopper 6 to get this old behavior back?
Thanks.
Tom
Seems liek a feature request: https://jira.atlassian.com/browse/JRA-5225
As described by other users in the feature request, there are some workarounds, such as the Minyaa Suite plugin: https://marketplace.atlassian.com/plugins/jira.plugin.minyaa
Or the JSS plugin: https://plugins.atlassian.com/plugin/details/16346
Within the project Workflow, navigate to the the "Create Issue" transition (first transition in a workflow under Open), then add a JSS Post Function script to copy whatever fields you require
if (issue.getParentId() > 0):
issue.setComponents(issue.getParentObject().getComponents())
issue.setFixVersions(issue.getParentObject().getFixVersions())
issue.setAffectedVersions(issue.getParentObject().getAffectedVersions())
issue.setPriority(issue.getParentObject().getPriority())
Thanks Daniel,
I'd searched around using various keywords and wasn't able to find this myself, but this is useful. I voted up JRA-5225 and am watching it, and I will investigate your suggested workarounds.
Tom
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.