Keep Ranking card feature while ordering DONE column

Patrick Poulin
Contributor
April 23, 2018

HI, 

I want to keep card ranking feature, but When I move a card to DONE column, the card is always at the bottom of the list. 

 

I want to sort the DONE column by last updated ? 

 

The expected result is when I move a card from INPROGRESS to DONE, the card will be on the top of DONE column.

1 answer

0 votes
Arthur Gonçalves
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 1, 2018

Hi Patrick,

This is pretty similar to what was discussed on this post and essentially you can resolve this by using a 3rd-party add-on named JJupin Agile. You will have to write a SIL script post function to do that. Don't worry, it's that simple:

rankFirst(key); // key is a predefined variable holding the issue key

Here is the documentation for the rankFirst routine(and the rest of the goodies): http://confluence.kepler-rominfo.com/display/JJUPA30/rankFirst

 

You can decide which issues should be ranked first. Let's assume you want to move first only the bug tickets. Here it is:

if (issueType == "Bug") { // yep, this is also predefined
  rankFirst(key);
}

 Hope this info helps.

 

Regards,
Arthur Gonçalves | Atlassian Support

Suggest an answer

Log in or Sign up to answer