How can I hide hide priority icon issue page?

Mohin Uddin August 29, 2013

Hi Expert,

How can I hide hide priority icon issue page?
Could you please help me regarding this issue.
Have a look screen shot below:

Thanks

Mohin

1 answer

0 votes
RambanamP
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.
August 29, 2013

try with follwing script by adding in footer.jsp

<script type="text/javascript"> 
jQuery(document).ready(function($) {
var issueType = $.trim($("#type-val").text());
//if you want to hide this field for all issues then remove following condition
	if($(issueType == 'Defect')   // change the issuetype here
        $('#priority-val').hide();         
     
});
</script>

Note: if you are using ondemand version then i don't think you can add javascript

Suggest an answer

Log in or Sign up to answer