I am tryng to get the value in the issuetype field.

Jason Galm April 4, 2013

I need this script to only run if the issuetype is Story. (for right now Bug because I don't have Grasshopper installed)

I have tried " issue.getIssueTypeObject().getType() " but that either returns "Standard" or "Sub-Task"

Then I used

def fieldMang = ComponentAccessor.getFieldManager()
def field = fieldMang.getField("issuetype")

but field doesn't seem to have any methods to get the value from it, and I can't find a method in FieldManager that handles returning a value if you know the issue.

1 answer

1 accepted

0 votes
Answer accepted
Jobin Kuruvilla [Adaptavist]
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.
April 4, 2013

try issue.getIssueTypeObject().getName()

Jason Galm April 4, 2013

I did not see that method in the API. Thank you for pointing it out.

Tim Theis August 5, 2015

Thank you... I needed this answer too!

Suggest an answer

Log in or Sign up to answer