Is there a way to display a parent's field value in a child view? For example, In a sub-task view, can I display (in read ony) the parent's fixversion field value?
@Phil If the field exists on the sub-task you can populate it with the parents information through an automation. We do this for fix version, components, and other information. We have an automation that updates them when they are changed on the parent and one that adds them when the sub-task is initially created or updated. This keeps the information in sync and allows us to see the information on the sub-task without having to go to the parent issue.
Hi Phil,
Short answer is no, that is not possible.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry - I thought you were were referring the the display in the list of Child work items. On the child itself, sure you can do that. See Brant's answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Phil,
I’m Thiago, a support engineer at Appfire.
You can automatically sync child issue fields with their parent whenever the parent is updated or a new child is created. Using Jira Misc Workflow Extensions (JMWE), you can configure this automation effortlessly:
It is that simple. Below is an example on how the configuration would look like:
Please contact our support if you have any other questions about this.
Best regards, Appfire support team.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Phil,
To put a finer point on what @John Funk and @Brant Schroeder said: there's no native way to display the parent's value as a live read-only mirror on the sub-task. What you can do is copy it into the sub-task's own field, then keep it in sync with automation. That's effectively what most teams settle on.
Here's a setup that works well:
Settings > Issues > Screens or, in team-managed spaces, via the work-type configuration).{{issue.parent.fixVersions}}parent = {{issue.key}}{{triggerIssue.fixVersions}}A few caveats:
.join(",") depending on the field type.Hope this helps,
Ivan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@PhilOne more thing worth flagging, in case the column view is what you actually need.
If you're open to solutions from the Atlassian Marketplace, JXL is a spreadsheet-style view for Jira where you can show parent fields as columns directly on each child row, read-only and live. So in a sheet listing your sub-tasks, you can add a "Parent's Fix Versions" column (or any other parent field), and it always reflects whatever's on the parent at that moment — no automation, no syncing, no extra fields on the sub-task. Useful when you just want to see and filter by the parent's data without duplicating it.
Disclosure: I work for the team that builds JXL.
Cheers,
Ivan
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.