I have created a new custom field type in my plugin. The new type is designed to contain time duration values similar to those supported by the worklogs (e.g. 3w 2d 1h).
The underlying DB value is store as a Double. The value stored is the number of seconds.
The transport object is a Long (so that it can for example be added to worklog values).
The display object is a String which is generated using a JiraDurationUtils object.
All of this seems to work fine except for one problem:
My velocity template for viewing the value uses $value to display the value on the screen. The value that I am seeing is the number of seconds rather than the formatted string.
My velocity template for editing also uses $value, but when I edit the issue I see the formatted string rather than the number of seconds.
Why do the two templates behave differently and how can I call a function from the view template to convert the value to a formatted string (I already have that function available in my custom field class) ?
I am using JIRA 4.3.3
Community moderators have prevented the ability to post new answers.
I think you can override the getObjectFromDbValue (or getStringFromSingularObject) method to return the formatted String instead of the long value that is saved.
Another option is ofcourse to put JIRADurationUtils in the context and do the formatting in the view template itself.
I have already overridden getStringFromSingularObject with a version that converts from Long to a formatted String. This is working fine as can be seen when I edit my issue (the value of the custom field appears as a correctly formatted string).
Why is the view template replacing $value with the Long value while the edit template is replacing it with the formatted String (as produced by the getStringFromSingularObject method) ?
I am not at all experienced in using velocity and I don't know how to do any manipulation in the template. What do I need to put in the template (and code ?) to get the following conversion ?
<font></font>
formattedString = durationUtils.getFormattedDuration(longValue, defaultLocale);
<font></font>
Thanks in advance
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
in the getVelocityParameters method, add JIRADurationUtils to the context. May be the locale too.
params.add("durationUtils", jiraDurationUtils); params.add("locale", defaultLocale);
You can the do this in template:
#if ($value) $durationUtils.getFormattedDuration($value, $locale); #ned
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Apply agile practices
Transform how you manage your work with agile practices, including kanban and scrum frameworks.
Learning Path
Configure agile boards for Jira projects
Learn how to create and configure agile Jira boards so you can plan, prioritize, and estimate upcoming work.
Jira Essentials with Agile Mindset
Suitable for beginners, this live instructor-led full-day course will set up your whole team to understand how to use Jira with an agile methodology.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.