Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Highlight Overdue Issues on a jira dashboard using the filter issue gadget?

Warren McInnes
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 15, 2013

Hi, I saw a post

http://blogs.onresolve.com/2009/11/highlight-overdue-issues/

That interested me, but seems outdated now?

We are currently using JIRA 5.2.1 and would like to know if anyone has had success with add this cool feature?

And how would i go about it?

4 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
Answer accepted
Warren McInnes
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.
May 29, 2014

import com.atlassian.jira.util.I18nHelper

import com.atlassian.jira.web.bean.I18nBean

import com.atlassian.jira.web.util.OutlookDate

def outlookDateManager = componentManager.outlookDateManager

def user = componentManager.jiraAuthenticationContext.getLoggedInUser()

I18nHelper i18nBean = new I18nBean(user)

OutlookDate outlookDate = outlookDateManager.getOutlookDate(i18nBean.getLocale())

def dueDate = issue.getDueDate()

def now = new Date()

if (dueDate) {

def dueDateText = outlookDate.formatDatePicker(dueDate)

if (now > dueDate) {

return "<div style='color:red;'><b>" + dueDateText + "</b></div>"

} else {

return "<div style='color:green;'>" + dueDateText + "</div>"

}

} else {

return null

}

0 votes
MattS
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.
May 29, 2014

Nowadays I'd recommend using a JIRA Agile board and different card colors using JQL that finds overdue issues

0 votes
Onkar Ahire
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.
July 21, 2013

hi Warren,

Create a filter

Try

status = Open and status was Open BEFORE startOfDay("-2d")

or

duedate < now()

Regards

Onkar Ahire

Warren McInnes
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.
July 21, 2013

What I'm looking for is the colour feature, Where the more overdue it is the darker the colour gets... Is this posible?

Like Sourabh Sharma likes this
0 votes
Warren McInnes
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.
July 21, 2013

No one cares to comment?

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

TAGS
AUG Leaders

Atlassian Community Events