Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Displaying Scripted Field Value in JIRA Two Dimentional Gadget

Doods Perea
Contributor
December 18, 2016

We have a scripted field "Month Created" that takes the month value from the date a JIRA ticket was created.  In the Default Configuration Scheme for this field is:

  1. Searcher:  "Free Text Searcher (stats)"
  2. Template:  Text Field (multi-line)

Code is as follows:

import com.atlassian.core.util.DateUtils;
import java.text.SimpleDateFormat;
return new SimpleDateFormat("MMM").format(new Date(issue.getCreated().getTime())) 

However, when we display this in our Gadget the Month is not "Ordered by Month" correctly (see column highlighted in red).

OrigGadgetDisplay_MonthCreated.png

We updated the Searcher of the field in the Custom Fields page to  "Date and Time Searcher (stats)".  After re-indexing JIRA, the custom field is not even recognized (although in the Filter the Month Created values for all 148 tickets remain visible and correct).

MonthCreatedNotShowing_DateTimeSearchTemplate01.png

 

Could anyone please advise on how to display the value of the scripted field ordered correctly by month?

Thanks!

1 answer

0 votes
Nic Brough -Adaptavist-
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.
December 19, 2016

I think this is because the gadget is looking for fields that present them selves as properly bounded lists of items.  While you've changed the searcher, that's actually one for doing statistics, not bounded lists, and the output is text, so it simply can't do it.

You really need the field output to be effectively a select list, but I don't think that can be done with a scripted field.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events