Hello we have some issue types therre we dont want to show the created and updatred date of for the isseus how we can hide them there are no option available in Field configuration aslo to hide them, is there any other way?
try with javascript as something like this by adding in footer.jsp
<script type="text/javascript"> jQuery(document).ready(function($) { var issueType = $.trim($("#type-val").text()); if(issueType == 'Defect'){ $("#create-date").style.display = 'none'; $("#updated-date").style.display = 'none'; or $("#create-date").hide(); $("#updated-date").hide(); }else{ $("#create-date").style.display = ''; $("#updated-date").style.display = ''; or $("#create-date").show(); $("#updated-date").show(); } }); </script>
make sure that "create-date" and "updated-date" names are correct by using firebug or javascript console
Hello Rambanam,
Thanks for answer but this is not working.
can you please give me some other solution
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i have updated my answer check that and let me know if you get any error!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.