Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,987
Community Members
 
Community Events
184
Community Groups

Scripted field output contains wiki markup

I have a scripted field to return the last comment from issue: 

import com.atlassian.jira.component.ComponentAccessor

def commentManager = ComponentAccessor.getCommentManager()
def comments = commentManager.getComments(issue)
if (comments) {
comments.last().body
}

 

However, when I search for issues and make the Last Comment visible on the view, the value contains the wiki markup, not pure text (or html), e.g. 

{color} +{color:#333333}*Recovery*+ * *Recovery Plan for TOP Markets

 

Also when I export the search results to CSV, it contains the markup. 

How can I correct it? 

Thank you, Miro

 

2 answers

1 accepted

1 vote
Answer accepted
Dar Kronenblum
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 Leaders.
Apr 30, 2018

Hi Miro,

markup format is available on wiki render fields

try to create a new text custom field

change its render to wiki

and update the custom field in listener instead of script fields

good luck !

Dar

Neta Elyakim
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 Leaders.
Apr 30, 2018

Great answer!

Works great,  thanks Dar. 

I used to have a regular field updated by listener, as advised in other answer, but if floods the issue history by updates of "Last Comment" field, making it hard to read other history records.


This Adaptavist Library solution describes how to achieve the wiki interpretation while using scripted field: Display Last Comment in Wiki Rendered Styled Custom Field

i.e.:

def rendererManager = ComponentAccessor.getComponent(RendererManager)
def renderContext = new IssueRenderContext(issue)
def commentManager = ComponentAccessor.commentManager
def comment = commentManager.getLastComment(issue)

if (comment) {
rendererManager.getRenderedContent(AtlassianWikiRenderer.RENDERER_TYPE, comment.body, renderContext)
}

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events