Hi all.
I need to hide the child level of a cascading select custom field in a screen in JIRA. It has to be available in other screens.
Has anyone tried this ?
Cheers, Tihomir.
Hi ,
Dont know whether it is possible for particular screens but you can hide the child node by pasting the below code in description of your cascading select customfield.
<script type="text/javascript"> var x=document.getElementById('customfield_id:1'); x.style.display='none'; </script>
Hi.
Thank you for the code, it will help at least for part of the game.
Actually, this is half of the idea.
I have to find out a way to hide the child page in issue creation screen and to fill them out later.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can put an if condition for the above code . something like
<script type="text/javascript"> var projectName = AJS.$("#issue-create-project-name") if(projectName){ var x=document.getElementById('customfield_id:1'); x.style.display='none'; } </script>
i am not sure this may or may not help. but this should work only on issue creation 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.