Hide select lists of Project and Issue Type from the Create screen

hirok April 17, 2013

Hi,

I'd like to hide Project and Issue Type selection lists in the Create Issue screen in JIRA 5.
Is there any way to do it?

Regards,
hiro

6 answers

1 accepted

0 votes
Answer accepted
Nadir MEZIANI
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 17, 2013
That's possible below are the steps:

In the description of the field Summary (other field) put this script

<script type="text/javascript">

myDiv = document.getElementsByClassName('issue-setup-fields')
if(myDiv){
myDiv[0].style.display='none'
}
</script>
the result is like this

 myDiv = document.getElementsByClassName('issue-setup-fields')
if(myDiv){
myDiv[0].style.display='non'
}myDiv = document.getElementsByClassName('issue-setup-fields')
if(myDiv){
myDiv[0].style.display='non'
}
0 votes
sathish babu somapalli January 20, 2015

How to hide only issue type

0 votes
hirok April 23, 2013

Hi,
Sorry for my late reply.

I can hide those fields by JavaScript that zezeto posted.

Thank you very much!!
hiro

0 votes
Nadir MEZIANI
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 17, 2013

0 votes
Michal Husar
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 17, 2013
0 votes
Michal Husar
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 17, 2013

Hi Hiro,

I think this can be dona with Javascript(similar topic: https://answers.atlassian.com/questions/140474/hide-fields-in-view-issue-screen).

Suggest an answer

Log in or Sign up to answer