Go to the board configuration and check that the board filter includes "order by rank"
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.
You can see it in your screenshot - it's got "order by rank" in it already.
That means you have ranking enabled, and don't need to do anything.
So, the next question is "where are you looking when you say ' display Sub-task with associated parent task hierarchy,' ?"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here's a sequence of what I am doing,,,,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No.
Your screenshot is of the quick filter configuration. That has nothing to do with ranking, it's about hiding and showing a sub-set of the data on your board.
Your first screenshot was where you enable ranking, and it was showing as already done.
So, again, where are you trying to "display sub-task with parent task"?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
(I see use "Ranking now" thanks for pointing that out) However, I want be able show sub-tasks associated with parent task in a hierarchy format (possibly expand and collapse the view). In open issue view
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, I know what you're trying to see, but you still have not explained where you want to see this. What do you mean by "in open issue view"?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I want to be able to see this in "Issues" for each project. And would like to know if I can view this format on my dashboard filter also.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm sorry, but "in issues for each project" tells us nothing about where you want to see this.
I'm not sure what "format" you are looking for, but a dashboard filter can easily include and display sub-tasks, and that has nothing to do with ranking
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OK....I don't think we are on the same page. I want to be able to display Sub task associated with Parent task... On the current attachment I can't tell what sub-task is associated to what task unless i click on the task to view detail.jira3.PNG
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, that view is the "issue navigator" which is designed to show you the results of a filter.
The simple list on the left really is very simple and just lists the results, ordered by whatever you have selected for ordering. It's not really aware of parent/subtask stuff, it just lists your issues in the order chosen.
I often write or install a simple "parent" scripted field which effectively adds "parent" to the sort order, which then at least groups them together in here, but this is not the place Atlassian generally intend parent/subtasks to be shown. Sorting the list by rank might work quite well here though, because sub-tasks belong to their parents and hence have the same rank, so they should be grouped if you select to order by rank here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for that clarification, but sorting don't quit work..However can you show me how to create and add the script and where does Atlassian intend to view task and sub-task? thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As sub-tasks belong to parents, the general ida is that you'd work with sub-tasks within them - the best display of sub-tasks for most purposes is within the parent issues. They are still issues though, so you can still report on and use them everywhere else.
The script I used in the past (and the add-on I wrote, which is essentially the same code) relies on Script Runner. It doesn't do a lot more than being a scripted field with an output based on the pseudo-code:
if (issue is a subtask type)
$issue.getParentIssue.getKey() + $issue.getParentIssue.getSummary()
else
$issue.getKey() + $issue.getSummary()
fi
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.