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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.