[JQL] How to show custom data in column in Issue Navigator?

Jenni Järvinen January 4, 2018

Hi,

Is it possible for me to show custom data in a column in Issue Navigator?

I would need to see a date when the issue has been changed to its current status.

So if I list issues like:

status = "Ready for production" AND status changed after -1w

... then can I have a column in the Issue Navigator that shows me something like "Date when status was changed: XX/XX/XXXX"

Or is there some add-on that could do this?

BR,

Jenni

1 answer

0 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 4, 2018

Hello,

You could use Power Custom Fields add-on. It is a free add-on. You could create a script like that:

JFieldChange [] fieldChangeList = getFieldChanges(key, "status");
int fieldChangeListSize = size(fieldChangeList);
return fieldChangeList[fieldChangeListSize -1].changeDate;

Then you can add the field in the Issue Navigator.

You can read more about Power Custom Fields here:

https://confluence.cprime.io/display/KCF/Power%20Custom%20Fields%20Documentation

Suggest an answer

Log in or Sign up to answer