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
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
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.