The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Database Values Plugin and Two Dimensional Filter Statistics

Sentinel1 Integration Team Sentinel1
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 9, 2013

When using Database Values Plugin custom fields in the Two Dimensional Filter Statistics portlet, the link for "None" doesn't take to the correct query but to the las one used by the user.

Please see https://jira.atlassian.com/browse/JRA-13024

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Wim Deblauwe
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 Champions.
December 9, 2013

I just tested it and I can confirm it is an issue. Support for this is done through implementing the CustomFieldStattable interface. I have it currently like this:

public StatisticsMapper getStatisticsMapper(CustomField customField)
	{
		return new AbstractCustomFieldStatisticsMapper(customField)
		{
			@Override
			protected String getSearchValue(Object o)
			{
				if( o == null )
				{
					return null;
				}
				else
				{
					return ((IdAndString) o).getId();
				}
			}

			public Object getValueFromLuceneField(String id)
			{
				// Convert the primary key into something nice
				if( id != null )
				{
					String text = DatabaseValuesViewHelper.getViewHelper(customField).getTextForStatistics(id, getDescriptor().getI18nBean());
					return new IdAndString(id, text);
				}
				else
				{
					return null;
				}
			}

			@Override
			public Comparator getComparator()
			{
				return new Comparator()
				{
					public int compare(Object o1, Object o2)
					{
						if (o1 == null && o2 == null)
						{
							return 0;
						}
						else if (o1 == null)
						{
							return 1;
						}
						else if (o2 == null)
						{
							return -1;
						}
						return ((IdAndString) o1).getText().compareTo(((IdAndString) o2).getText());

					}
				};
			}
		};
	}

I don't know what I do wrong to support the 'none' hyperlink case?

TAGS
AUG Leaders

Atlassian Community Events