I am using a scripted field to show in a subtask its parent's assignee. I have:
return (parent?.assignee == null ? null : ApplicationUsers.from(parent.getAssignee() as User) as ApplicationUser)
and the template is User Picker.
However the field is show in the General tab of the issue, not in the People tab, without the link.
This is version 2.1.16 in JIRA 6.1.5
Any hints?
I don't think the feature for showing the field in the correct section depending on the template was in that old version...
Upgrade it is. Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
could you try this?
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.user.util.UserManager def userManager = ComponentAccessor.getComponent(UserManager) issue.parentObject?.assignee == null ? null : userManager.getUserByName(issue.parentObject.assignee?.name)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It keeps showing the name in the General tab. I understand that in order to appear in the People tab the custom field must implement an interface. Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I forgot to mention that I tested the code against the latest versions of Jira and SR, so the issue might be related with the older versions your instance is running. What do you mean by "must implement an interface"?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am using a Participants CF from Jira Toolkit, and this works OK in my version of JIRA, this field is shown in the People tab: https://bitbucket.org/atlassian/jira-toolkit-plugin/src/4c309b834fb5bde709210b2bc0fd4d6e5d5243e8/src/main/java/com/atlassian/jira/toolkit/customfield/ParticipantsCFType.java?at=master Note the line: ApplicationUser assignee = userConverter.getUserFromDbString(issue.getAssigneeId());
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.