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:
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!
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.