|
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 Quick Custom Field Types PrimerThere's a few things you need to understand before diving into custom fields. A custom field type can have three components.
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.
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. Admin-only editable fieldFor 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:
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.
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.
Last commented user calculated fieldThe 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 TypeBefore 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 togetherMuch 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.
Enable SearchingThe 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.
Sorting in Issue NavigatorTo 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 pluginLastly, 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 helperFirst 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
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: ![]() |








Comments (10)
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 )
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
And then, in my infinite wisdom of hackery:
/var/www/jira/atlassian-jira/WEB-INF/classes/system-customfieldtypes-plugin.xml
I hope this helps for those who actually have the time (and talent) to do this up right
Have a lovely day, folks!
Feb 04, 2008
Mathieu GARAUD says:
Hello, Where is the source code of this tutorial ? Thanks in advance, MathieuHello,
Where is the source code of this tutorial ?
Thanks in advance,
Mathieu
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
May 30
Jo-Anne says:
Has anyone actually tried to follow the examples? 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?
Jul 16
carol paige says:
Has anyone added a custom field that is a sum of many fields? (10 values p...Has anyone added a custom field that is a sum of many fields? (10 values potentially)
Jul 25
Vincent Thoulé says:
Yes, I do it. SeeYes,
I do it. See http://kaamelot.fr.free.fr/doc/3.1x.1.x/Functional-Features/Customfields/WorklogCFType.html
V.
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
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.
Aug 01
Karsten Landwehr says:
Hi guys, 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