Adding Help Text to a Custom Field

JT
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.
September 24, 2013

I am attempting to add help text to a custom field. I have added the following to the field description:

Report Path
<script type="text/javascript">
function showHelp() {
var listenersDiv = document.getElementById("rpFieldHelp");
if (listenersDiv.style.display == 'none') {
listenersDiv.style.display = '';
} else {
listenersDiv.style.display='none';
}
}
</script>
<a href="#" onclick="showHelp(); return false;"><img src="/images/icons/ico_help.png"/></a>
<div id="rpFieldHelp" style="display:none">
Incomplete information in this field may delay resolution of this request.
</div>

The words Report Path are displayed but the help icon and help text are not being displayed. Am I missing something? We are JIRA v6.0.7.

7 answers

0 votes
Legna Garcia July 16, 2018

Do I need an special add-on for this? I'm working on cloud version.

Thanks!

0 votes
JT
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.
September 24, 2013

Opening the create issue page in a new tab does not display the help icon or text.

0 votes
RambanamP
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.
September 24, 2013
0 votes
JT
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.
September 24, 2013

Rambanam,

Yes, on the Create screen.

0 votes
RambanamP
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.
September 24, 2013

for confirmation, can you open create issue page on new tab(right click on create issue and select open on new tab)

i think it should be working on that page!!

0 votes
RambanamP
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.
September 24, 2013

on which screen you tested? is it on create screen?

0 votes
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.
September 24, 2013

Are you modifying the field description under field configurations? If not, try that.

You can verify by changing the text "Report Path" and by checking if the change is reflected or not!

JT
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.
September 24, 2013

Jobin,

I am modifying the description under field configurations.

Suggest an answer

Log in or Sign up to answer