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
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'
}
How to hide only issue type
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.
And maybe this can help you as well: https://answers.atlassian.com/questions/75571/javascript-hidden-field-does-not-hide-on-jira-5-1-but-is-hidden-on-jira-4-0
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Hiro,
I think this can be dona with Javascript(similar topic: https://answers.atlassian.com/questions/140474/hide-fields-in-view-issue-screen).
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.