Hi Expert,
I want to hide some specific issue types from drop-down list of Issue type field without issue type migration.Is there any way to do this.Have a look screen shot below.
Could you please inform me?
Thanks
Mohin
Hi,
Look this link .
https://answers.atlassian.com/questions/159706/hide-select-lists-of-project-and-issue-type-from-the-create-screen
it's can help you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
as @Michal suggested if don't want have issues with hidden issuetypes then create new issuetype scheme
still you want hide issue types using javascript try with following code
<script type="text/javascript"> $(document).ready(function() { $("#issuetype option").each(function() { if( $(this).text() == 'issuetype name' || $(this).text() == 'issuetypename' ){ $(this).remove(); } }); }); </script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@rambanam
Your JS does not work for me in 5.x version.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try with this
<script type="text/javascript"> jQuery(document).ready(function($) { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function(e,context) { $("#issuetype option").each(function() { if( $(this).text() == 'issuetype name' || $(this).text() == 'issuetypename' ){ $(this).remove(); } }); }); }); </script>
i suggest you to add js code as webresource, check the following post
https://answers.atlassian.com/questions/47843/strange-javascript-problem-in-create-screen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This doesn't work for JIRA 7.2.3. @Rambanam Prasad any suggestions. Thanks in advance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Michal,
Thanks
Mohin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So in some of your projects user will not be able to create Issues with hidden types, that means, that in these projects you don't want have Issues with these hidden types? Because if yes, then you can use different "Issue type schemes" for different projects..
But if you want have Issues with these hidden types in project and they will be hidden only in drop-down list, I don't know if this is possible.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mohin,
do you want only hide Issue types from this drop-down list or also disable(block) creation of Issues with this hidden Issue types?
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.