I was under the impression that User Picker fields automatically showed up in the People section of issues. Instead, a User Picker custom field that I recently created is still in the general details of the ticket, not under People.
How do I make this custom field appear under People when viewing an issue?
I'm using JIRA 4.4.
Thanks.
2. Have you added the field on the view screen under screen schemes? You can have different screens defined for different issue operations (i.e. different screens for Edit and View).
https://confluence.atlassian.com/display/JIRA/Associating+a+Screen+with+an+Issue+Operation
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to implement the UserField interface for it to show in the People section.
Btw, your tag seems wrong because you cant have thrid party plugins on onDemand!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm really new to this. My apologies. I don't know what you mean by "extend the UserField interface." Could you elaborate?
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is an interface in JIRA. Your customfield class just need to implement that interface.
public class YourCFType extends xxx implements UserField
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I guess I should have mentioned that other User Picker custom fields are already showing up in the People section. Only this one new field isn't showing up.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yeah, do this only for the new field. Atlassian already have done this for the User picker fields!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
But the field I'm talking about IS a User Picker field. But for some reason, it's the only User Picker field that doesn't show up in People.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
oh sorry, I thought it is a custom field you created. My apologies.
Couple of things to check.
1. Does it have a value?
2. is it on the view screen?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
1. Yes, it has a value.
2. No, it doesn't show up in the view screen. Only in edit.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear Jobin,
If have to implement this can you assist how this can be done on JIRA 6.4.
It is an interface in JIRA. Your customfield class just need to implement that interface.
I wanted a basic text custom field to appear under People section.
Regards,
Ranjit
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.