Hello,
I am wondering if it's possible to display the issue type (written out, not just the icon) of linked issues and sub-tasks on the main issue view. People are saying that it's hard to tell what issue type they are once you have several sub-tasks and/or linked issues under a main issue. I've tried everything I can think of and can't seem to find a way to display this. Any ideas?
Thanks!
Keri B.
Modify
atlassian-jira\WEB-INF\classes\templates\jira\issue\field\issuetype-columnview.vm
Indent it properly so you can read the code, and simply append:
$textutils.htmlEncode($!issuetype.nameTranslation, false)
after #end after the img tags.
Ah, realize that solution is for issue type and not status. Is there a way to add status as text instead of icon?
EDIT: I found the status-column.vm, but it only used for subtask panel and not issue links panels. Is there a way we can "copy" subtask panel to issue-link panel?
Thanks again
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, thanks for sharing this information. this is just what I was looking for :)
I try to edit that file with that extra line of code, and restart JIRA, but I am not seeing the status as text. I try putting that line right after the first else statement (since i want the text to be left of the icon) but that didnt work either. Thoughts? Is this solution has version restriction?
Thanks again!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The API might be different for the version you're using.
I would suggest you first test if you're putting the line of code in the right place. Since you said you placed it after the first #else, try putting a hard-coded string in there. You might also want to check the logs to see if there were any velocity errors when you put the line of code in.
You can also try this line for 4.2.2:
$issuetype.getNameTranslation()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You might have to modify the velocity template for issuetype column view (issuetype-columnview.vm) to add the name along with icon!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Doesnt work for 4.4.1 onward
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JIRA is too overzealous with the ICONs. Sure they look pretty, but at the end of the day, they are really useless a lot of the times w/o the text.
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.