How to create a new Custom Field Type

JIRA Documentation

Index

Since JIRA 3.0 you have been able to create your own Custom Field Types through the plugin interface. In this tutorial, we'll take a look at a few simple examples and explain how you can easily achieve this.

Before you start, you may also want to familiarise yourself with the JIRA Plugin Guide.

A note about changed interfaces

We're always endeavouring to make JIRA better with each release. This often leads to new improvements and changes to the public interfaces in major JIRA versions (e.g. 3.1 to 3.2). This guide has been updated for the latest JIRA release, so if you're building a plugin for a prior JIRA version, keep an eye out for notes about differences in the interface.

A Quick Custom Field Types Primer

There's a few things you need to understand before diving into custom fields. A custom field type can have three components.

  • Java Class encapsulating custom field logic
  • Resource templates for display of custom field
  • Module descriptor to enable the custom field module in JIRA

A custom field class extends the interface CustomFieldType. This interface provides methods to retrieve and store custom fields values. There are several extension points that are available to make creating new custom field types easier (e.g. CalculatedCFType, AbstractSingleFieldType, AbstractMultiSettableCFType). It is also possible to extend existing custom field types to add functionality (e.g. A currency type extending NumberCFType).

The second component are the resource templates which renders the custom field. There are four view types available, each representing a different context to render the custom field.

  1. view - basic read-only view of the value (e.g. view issue, move issue confirm screen)
  2. column-view - read-only view for displaying in the issue navigator. will default to view if omitted
  3. edit - renders the edit widget for the custom field (e.g. edit issue, edit defaults)
  4. xml - xml view of the value (e.g. rss, xml views)

Linking the Java code and rendering views are the plugin-module descriptors in your atlassian-plugin.xml. They allow JIRA to recognise what custom fields are available to the system and how to render them.

Example module descriptor
<atlassian-plugin key="com.atlassian.jira.plugin.customfield.example" name="JIRA Customfields Examples Plugin">
<plugin-info>
<description>Customfields Examples Plugin.</description>
<version>1.0</version>
<application-version min="3.3" max="3.3"/>
<vendor name="Atlassian Software Systems Pty Ltd" url="http://www.atlassian.com"/>
</plugin-info>

<customfield-type key="textarea" name="Free Text Field (unlimited text)"
class="com.atlassian.jira.issue.customfields.impl.TextAreaCFType">
<description>A multiline text area custom field to allow input of longer text strings.</description>

<resource type="velocity" name="view" location="templates/plugins/fields/view/view-basictext.vm"/>
<resource type="velocity" name="column-view" location="templates/plugins/fields/view/view-limited-text.vm"/>
<resource type="velocity" name="edit" location="templates/plugins/fields/edit/edit-textarea.vm"/>
<resource type="velocity" name="xml" location="templates/plugins/fields/xml/xml-basictext.vm"/>
</customfield-type>
</atlassian-plugin>

You can also take a look at the default custom fields that shipped with JIRA here.

Information about setting up a complete plugin development environment for a plugin can be found here.
You can compile the examples below in the same way.

Admin-only editable field

For the first example, we'll construct a custom field that is only be editable by JIRA administrators and appear as a plain text to others. This is a simple customisation of the shipped TextCFType custom field and can be done by change one edit template.

First, we need to add the module to the atlassian-plugin.xml.

...
<customfield-type key="admintextfield" name="Admin Editable Text Field"
class="com.atlassian.jira.issue.customfields.impl.TextCFType">
<description>A text field only editable by JIRA-administrators. Others will see only text.</description>
<resource type="velocity" name="view" location="templates/plugins/fields/view/view-basictext.vm"/>
<resource type="velocity" name="edit" location="templates/edit-jiraadminonlytext.vm"/>
<resource type="velocity" name="xml" location="templates/plugins/fields/xml/xml-basictext.vm"/>
</customfield-type>
...

A few points:

  • key must uniquely identify the module in this plugin file.
  • name & description are displayed when creating a new custom field instance

This module definition exactly matches that of a standard text field except for one line.

<resource type="velocity" name="edit" location="templates/edit-jiraadminonlytext.vm"/>

We are customizing the edit Velocity template so that it displays as a text box for an administrator but appears as uneditable text for others. Source for edit-jiraadminonlytext.vm is below.

edit-jiraadminonlytext.vm
#controlHeader ($action $customField.id $customField.name $fieldLayoutItem.required $displayParameters.noHeader)

#if ($authcontext.user.inGroup('jira-administrators'))
<input type="text"
name="$customField.id"
value="$!value" />
#else
#if($value && $!value.equals(""))
#set ($displayValue = ${value})
#else
#set ($displayValue = 'N/A')
#end
<span title="This field is editable only by JIRA administrators">$!displayValue</span>
<input type="hidden"
name="customField.id"
value="$!value" />
#end
#controlFooter ($action $fieldLayoutItem.fieldDescription $displayParameters.noHeader)

The above template checks if the user is part of group jira-administrators. If they are, display the text box, else display the value only as uneditable text.

There's a few points to note.

  • For what variables are available for a custom field you should check out the velocity context guide.
  • #controlHeader and #controlFooter provide each custom field with the appropriate label and surrounding HTML table tags. This is required for all edit templates.

And that's it, a new custom field type. Deploy the JAR, login as an administrator and then a normal user and try it out.



Logged in as an admin



Logged in as a non-admin

Last commented user calculated field

The next example deals with a Calculated Custom Field. Calculated don't actually store any values. You often want or need this when you want to search on fields not normally available in JIRA, but the information can be derived. In this case, we want to return the last user who commented on the issue, if they are not an administrator. We only want this field to be visible in the issue navigator and not the edit or view pages.

Coding the Custom Field Type

Before you implement the interface CustomFieldType you should check out the latest javadoc. A useful extension point for calculated custom fields is, unsurprisingly, CalculatedCFType, where only three methods needs to be implemented.

The key method used to retrieve the value of our custom field is getValueFromIssue.

public Object getValueFromIssue(CustomField field, Issue issue)
{
User currentUser = authenticationContext.getUser();
User lastUser = null;
try
{
List comments = actionManager.getComments(issue.getGenericValue(), currentUser);
if (comments != null && !comments.isEmpty())
{
Comment lastComment = (Comment) comments.get(comments.size()-1);
User commenter = lastComment.getUser();
if (!commenter.inGroup(JIRA_ADMIN))
{
lastUser = commenter;
}
}
}
catch (GenericEntityException e)
{
}

return lastUser;
}

Note that prior to 3.3, the method had a GenericValue as the issue parameter. If you're developing for those JIRA versions make sure you correct your method signatures.

The return type Object is also known as the Transport Object. In this instance it is of type User, but it could be any other type. The Transport type must remain consistent across all methods such as create, update and also the view and edit templates.

Wiring it together

Much like the previous example, we can reuse some of the the templates that ship with JIRA.

<customfield-type key="lastusercommented" name="Last user commenter"
class="com.atlassian.jira.plugin.customfield.example.LastUserCommentedCFType">
<description>This is a lookup field that displays the last commenter who is not a JIRA administrator</description>
<resource type="velocity" name="column-view" location="templates/plugins/fields/view/view-user.vm"/>
<resource type="velocity" name="xml" location="templates/plugins/fields/xml/xml-user.vm"/>
</customfield-type>

We can omit any resource types that we don't require. Thus both the edit and view templates are omitted here. The field should only appear when viewing through the issue navigator (column-view) and XML/RSS views (xml). The view user adds a link to the user details page and displays the full user name.



Fred is the last commenter



View in issue navigator

Enable Searching

The last commenter field in itself isn't all that useful. While we can see it in on the issue navigator, we can't search for a particular user who commented it last. Searching in JIRA 3 is handled by CustomFieldSearchers. Again several pre-configured searchers are available. You must ensure that the Transport Object are compatible between the custom field and the custom field searcher. Thus we can only use the UserPicker searcher since this is the only one that indexes User objects.

<customfield-searcher key="userpickersearcher" name="User Picker Searcher"
    i18n-name-key="admin.customfield.searcher.userpickersearcher.name"
    class="com.atlassian.jira.issue.customfields.searchers.UserPickerSearcher">
    <description key="admin.customfield.searcher.userpickersearcher.desc">Allow to search for a user using a userpicker.</description>
    <resource type="velocity" name="label" location="templates/plugins/fields/view-searcher/label-searcher-user.vm"/>
    <resource type="velocity" name="search" location="templates/plugins/fields/edit-searcher/search-userpicker.vm"/>
    <resource type="velocity" name="view" location="templates/plugins/fields/view-searcher/view-searcher-basictext.vm"/>

    <valid-customfield-type package="com.atlassian.jira.plugin.customfield.example" key="lastusercommented"/>
</customfield-searcher>

This is quite similar to the CustomFieldType definition. The tag valid-customfield-type is used to associate the searcher to any number of custom field types. Package refers to the atlassian-plugin key attribute at the top of a plug-in and and the key refers to the module/customfield key.

Now when you create/edit your Last User Commented custom field, you'll be able to select the User Picker as a search template. You can now search on the last commenter field in the issue issue navigator.

Important When you change a search template for a custom field, you may need to perform a reindex before the search will work correctly. This issue is being tracked at JRA-4641.



Searching enabled

Sorting in Issue Navigator

To enable sorting you simply need to implement the interface SortableCustomField

public class LastUserCommentedCFType extends AbstractCustomFieldType implements SortableCustomField

The interface simply extends Comparable, so you need to implement the compare method.

public int compare(Object customFieldObjectValue1, Object customFieldObjectValue2, CustomFieldConfig customFieldConfig)
{
return new BestNameComparator().compare(customFieldObjectValue1, customFieldObjectValue2);
}

The BestNameComparator is a simple helper type to facilitate comparing two users. You could just as easily write your own custom compare method.

Amazon search plugin

Lastly, a frivolous plug-in to give you some ideas on how to implement custom fields that perform remote look ups. Basically, we want a custom field that will take a text string and display a results from a search through the Amazon. There are several approaches to this, but by simplest solution is to treat the stored value as a simple text field and then add a viewHelper object that effectively transforms the string into the desired result.

Coding and Attaching the view helper

First we need to code our Amazon view helper. You can take a look in the source, but how it's been implemented isn't all that relevant. Once we have the view helper, we can pass this helper to the Velocity templates through the method getVelocityParameters

public Map getVelocityParameters(Issue issue)
{
Map map = new HashMap();
map.put("amazonSearchViewHelper", new AmazonSearchViewHelper());
return map;
}

The object AmazonSearchViewHelper is now accessible the velocity template. It has the method searchForBooks which returns a list of Books given some key words. We simply invoke this helper method in the template and display the results in a table.

#if ($value)
Results for search query "${value}" <br />

<table class="grid">
<tr>
<th>Title</th>
<th>Primary Author</th>
</tr>
#foreach ($book in $amazonSearchViewHelper.searchForBooks($value))
<tr>
<td><a target="_new" href="${book.link}">${book.title}</a></td>
<td>${book.firstAuthor}</td>
</tr>
#end
</table>
#end

You can utilise this same idea to display data from other remote systems, or even combine it with the readonly field to create your very own remote custom field.

Confluence Page Link custom field

This plugin is available here - and is not included in the jira-development-kit.

The 'Confluence Page Link' custom field plugin provides an example of implementing a custom field that performs a remote look up through XML/RPC..

This custom field provides a pop-up searcher - allowing the user to enter a search query that is executed over publicly accessible pages within a specified Confleunce instance. The user can select a result and the URL of thatpage is stored in the custom field - a simple text field. The Confluence instance to search against is specified in a properties file.

A new webwork action 'ConfluencePageBrowserAction' is required - allowing the popup window view to be associated with the action that performs and returns results from the Confluence page search.

The webwork action is registered in the atlassian-plugin.xml file as follows:

<webwork1 key="confluencepagebrowseraction" name="Confluence Page Browser Action" class="java.lang.Object">
<actions>
<action name="com.atlassian.jira.plugin.confluencelinker.ConfluencePageBrowserAction" alias="ConfluencePageBrowser">
<view name="success">/templates/confluence_page_browser.vm</view>
</action>
</actions>
</webwork1>

The ConfluencePageBrowserAction class is where the search logic is coded:

XmlRpcClient rpcClient = new XmlRpcClient(confluenceURL);
Vector xmlrpcResults = (Vector) rpcClient.execute("confluence1.search", makeParams(getSearchQuery(), 100));
if (xmlrpcResults != null)
{
earchResults = new ArrayList();
for (Iterator iterator = xmlrpcResults.iterator(); iterator.hasNext();)
{
Hashtable xmlrpcResult = (Hashtable) iterator.next();
searchResults.add(new SearchMatch(xmlrpcResult));
}
...

The Confluence page browser template displays the search query text box and the results:

#foreach ($result in $action.getSearchResults())
<tr onmouseover="rowHover(this)" onclick="selectLink('$result.getUrl()')">
<td>
<div class="borderedbox">
<b>Title</b>:   $result.getTitle()<br>
<b>URL</b>:     $result.getUrl()<br>
<b>Excerpt</b>: #if($result.getExcerpt())$result.getExcerpt() #else None #end
</div>
</td>
</tr>

The popup appears as follows:

Labels:

Enter labels to add to this page:
Wait Image 
Looking for a label? Just start typing.
  1. Mar 10, 2006

    Uldis Anšmits says:

    You don't have to worry about arguments in custom field constructor. Picocontain...

    You don't have to worry about arguments in custom field constructor. Picocontainer resolves constructor dependencies.

    ( customfield method parameters )

  2. Sep 17, 2007

    Tim Feeley says:

    Creating (in the hackiest way possible) a select dropdown that is editable by Ad...

    Creating (in the hackiest way possible) a select dropdown that is editable by Admins only

    Howdy.

    So, I doubt this is the correct way to accomplish this -- but i needed a quick hack in order to have a custom field type that is admin-editable only, but instead of a text box, is a drop down box. Being anti-JAVA, anti-Maven and generally anti-anything-that-makes-me-put-in-semicolons, I worked out this gem... Hope it helps as a starting point for some of you who want a select list that is disabled for all but admins, since I've seen that request a few times.

    /var/www/jira/atlassian-jira/WEB-INF/classes/templates/plugins/fields/edit/edit-adminselect.vm


    #controlHeader ($action $customField.id $customField.name $fieldLayoutItem.required $displayParameters.noHeader)
    
    #if ($authcontext.user.inGroup('jira-administrators'))
    <select name="$customField.id" id="$customField.id">
        #if (!$fieldLayoutItem || $fieldLayoutItem.required == false)
            <option value="-1">$i18n.getText("common.words.none")</option>
        #else
            <option value="">$i18n.getText("common.words.none")</option>
        #end
        #foreach ($option in $configs.options)
            <option value="$textutils.htmlEncode($option.value)"
                #if ($value && $value == $option.value)selected#end
                >$option.value</option>
        #end
    </select>
    
    #else
    
         #set ($displayValue = 'N/A')
    
         #foreach ($option in $configs.options)
              #if ($value && $value == $option.value)
                    #set ($displayValue = ${option.value})
              #end
         #end
    
        <span style="color: #666; border-bottom: 1px dotted #333;" title="This field is editable only by JIRA administrators">$!display$
        <input type="hidden"
               name="$customField.id"
               value="$!displayValue" />
    #end
    
    
    #controlFooter ($action $fieldLayoutItem.fieldDescription $displayParameters.noHeader)

    And then, in my infinite wisdom of hackery:

    /var/www/jira/atlassian-jira/WEB-INF/classes/system-customfieldtypes-plugin.xml
    <customfield-type key="select2" name="Admin Select List"
            class="com.atlassian.jira.issue.customfields.impl.SelectCFType">
            <description key="admin.customfield.type.select.desc">A single select list (admin editable only) with a configurable list o$
    
            <resource type="velocity" name="view" location="templates/plugins/fields/view/view-rawtext.vm"/>                 
            <resource type="velocity" name="edit" location="templates/plugins/fields/edit/edit-adminselect.vm"/>                  
            <resource type="velocity" name="xml" location="templates/plugins/fields/xml/xml-basictext.vm"/>
        </customfield-type>
    
        <customfield-searcher key="selectsearcher2" name="Select List Searcher"
            i18n-name-key="admin.customfield.searcher.selectsearcher.name"
            class="com.atlassian.jira.issue.customfields.searchers.SelectSearcher">
            <description key="admin.customfield.searcher.selectsearcher.desc">Search for values using a select list.</description>
    
            <resource type="velocity" name="search" location="templates/plugins/fields/edit-searcher/search-select.vm"/>
            <resource type="velocity" name="view" location="templates/plugins/fields/view-searcher/view-searcher-basictext.vm"/>
            <resource type="velocity" name="label" location="templates/plugins/fields/view-searcher/label-searcher-basictext.vm"/>
            <valid-customfield-type package="com.atlassian.jira.plugin.system.customfieldtypes" key="select2"/>
        </customfield-searcher>

    I hope this helps for those who actually have the time (and talent) to do this up right

    Have a lovely day, folks!

  3. Feb 04, 2008

    Mathieu GARAUD says:

    Hello, Where is the source code of this tutorial ? Thanks in advance, Mathieu

    Hello,

    Where is the source code of this tutorial ?
    Thanks in advance,

    Mathieu

  4. Mar 20

    Wim Deblauwe says:

    The example here uses: public Map getVelocityParameters(Issue issue) but thi...

    The example here uses:

    public Map getVelocityParameters(Issue issue)

    but this method is deprecated and should be replaced by

    public Map getVelocityParameters( Issue issue, CustomField customField, FieldLayoutItem fieldLayoutItem )

    I think it would be good to update this page with this information.

    Also, does the AbstractCustomFieldType already includes something in the Map or is it best practise to create a new map and return that one as the example shows?

    regards,

    Wim

  5. May 30

    Jo-Anne says:

    Has anyone actually tried to follow the examples?&nbsp; I am trying to create a ...

    Has anyone actually tried to follow the examples?  I am trying to create a admin only editable field.  I'm trying to follow the example given.  There are a few questions that haven't been explained.  Gotta keep in mine that a tutorial is so that you can learn it.  So I have found atlassian-plugin.xml, now amd I just supposed to add the lines given somewhere in the file?  Does it matter where?  Once I edit, jira-adminonlyedit.vm to have the lines given.  Then what?  The tutorial only says..."thats it"  There must be some way to get the information from the source directory into a running JIRA installation.  Obviously I am missing something here, but I don't know what.  If anyone is on this page, can you help?

  6. Jul 16

    carol paige says:

    Has anyone added a custom field that is a sum of many fields?&nbsp; (10 values p...

    Has anyone added a custom field that is a sum of many fields?  (10 values potentially)

  7. Jul 16

    Ray La Valley says:

    Has anyone added a custom field that pulls in external data from elsewhere in th...

    Has anyone added a custom field that pulls in external data from elsewhere in their database (outside Jira tables)?  An example would be pulling in the IP address and phone extension for the reporter of an issue, where I maintain that information outside of the Jira application, and displaying that info in the Issue Navigator and the Issue Details views.

    I see above mention of CustomFieldType and CalculatedCFType which may be what I want , but where is this code executed from and how is it used?  Is there an example of how to (and where to) use this Java code?

    Thanks,

    Ray

    1. Jul 25

      Vincent Thoulé says:

      Almost ... Each time, I need to use other data as JIRA, I integrate the added Ta...

      Almost ... Each time, I need to use other data as JIRA, I integrate the added Table in the OFBIz Entity Model.
      Other possible solutions should be to perform all Database acces through JDBC ... Good luck.
      V.

  8. Aug 01

    Karsten Landwehr says:

    Hi guys, &nbsp;can I do the same thing with Confluence? I want to display a text...

    Hi guys,

     can I do the same thing with Confluence? I want to display a text field on a page where a user can enter a word. This should then be used in an WHERE clause of an SQL-Statement.

     It would be nice if someone can give me a guide for this or so.

    Regards

    Karsten