Disble icons in Issue Collector Form

Adolfo Casari
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.
April 25, 2013

I need to disable some icons shown in the issue collector form (the help sign and the screen) next to the description an priority fields. I know that jquery can change css atributes (like visible:none in this case), but can't figure out how to trigger this code in that form.

Any ideas?

Thank you!

1 answer

1 accepted

0 votes
Answer accepted
AhmadDanial
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 2, 2013

Hey there, Adolfo.

I believe that your question has been answered by Peter Hafke as per the following comment in the documentation (https://confluence.atlassian.com/display/JIRA/Advanced+Use+of+the+JIRA+Issue+Collector):

For this case you have to find out the class-param of these objects. For a similar solution I use following codeblock in the description field, e.g. of the summary-field. (Ensure to use the correct field configuration!)

"<script type="text/javascript">

jQuery(document).ready(function() {
jQuery(".issue-setup-fields").hide();
});
</script>"

Warm regards,

Danial

Suggest an answer

Log in or Sign up to answer