Jira Help icon besides a custom field!

Daniel Miks December 13, 2017

Hi

Have added the following script to a custom field (ECU), in order to show the help icon and when pressed pop up a text. In this case a test text!

The help icon ico_help.png shows up underneath the field rather than between field header text and field.

 

helpikon jira.png

 

<a data-aui-trigger href="#" aria-controls="ecu-inline">
<img src="/images/icons/ico_help.png"/>
</a>

<style>
aui-inline-dialog{ max-width: 600px; }
</style>

<aui-inline-dialog id="ecu-inline" alignment="bottom left">
Test for the custom field ECU
</aui-inline-dialog>

 

Any solutions would be much appreciated!

/Daniel

2 answers

1 accepted

2 votes
Answer accepted
Daniel Miks December 20, 2017

Hi

The icons to the right is provided by the Add-on Insight.

But I solved it by changing the script now and it looks like this.

<script type="text/javascript">
AJS.$("#customfield_11013").parent().parent().parent().children('label').append('<a data-aui-trigger href="#" aria-controls="primary-indicator-inline"> <img src="/images/icons/ico_help.png"/> </a>')
</script><style>
aui-inline-dialog{  max-width: 600px; }
</style><aui-inline-dialog id="primary-indicator-inline" alignment="bottom left">
    Text to be shown when clicking the question mark icon
</aui-inline-dialog>

 

field configuration.png

Andy Heinzer
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 20, 2017

Cool, thanks for posting your solution here!

Like Juan Ramón Alonso likes this
Juan Ramón Alonso
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 10, 2020

I know this is a bit old but maybe a small improvement here could be this:

AJS.$("label[for='customfield_11013']")

instead on going through the parent() tree to find the element (which is likely subject to change in the future with a different layout) using "label for" is an HTML5 standard to find the label that applies to element with a certain ID

... and it is way a bit easier to read :)

Like Shivi Gupta likes this
Shivi Gupta April 23, 2020

Hello @Juan Ramón Alonso 

How to redirect the image icon to a different page ? 

Thanks  

Sonu Verma May 5, 2021

Hi @Daniel Miks 

is this add-on still avilbele in Jira-marketplace  ?

~Thanks 

0 votes
Andy Heinzer
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 14, 2017

Hi Daniel,

I don't see any clear problems with your script/code here.  However I don't recognize the two icons to the right of these fields.   I am curious to learn if these are being provided by some plugin to Jira and if so what is the name of that plugin.

What I would try to do would be to click and highlight the text from the letters ECU, down past the help question mark to highlight this section, then if you right click on the selected text, you will notice that browsers like Firefox or Chrome will provide an option to "Inspect".  Choose this.  This will bring up the actual HTML code in use here.   It might help to see if there are any <br/> or <p> tags or possible something else here that might be forcing a linebreak on that page.  

It might be Jira doing this, but it could also be caused by a plugin to Jira that might be adding some kind of markup here to the HTML code.   It might not be something we can change, but if we can see this section of information we might be then able to better understand what is causing this behavior.

Andy

Suggest an answer

Log in or Sign up to answer