Configuring Log Work fields

ShaneM November 26, 2012

We want to enable the log work fields on our resolution screen. However, when I add Log Work to the screen, it adds the following fields:

  • Time Spent
  • Date Started
  • Remaining Estimate (with a number of radio options)

We don't track estimates etc so all we need is the Time Spent field. Is there a way to configure this so that the Date Started and Remaining Estimate fields are hidden on the resolution screen and only the Time Spent box is displayed?

Thanks

2 answers

0 votes
Andrea Newman January 22, 2013

I would like to do the same, but and a few additional fields of my own, for other work log information we require.

Is there anyway to modify the work log screen, as the otehr screens are modified, to remove fields and add new ones?

0 votes
Andrey Markelov November 26, 2012

Hello,

For Jira 5.1.x you can add to Announcement Banner next code:

<script language="javascript">
jQuery(window).ready(function() {
    if (jQuery.trim(jQuery('#project-name-val').text()) == "{your_project_name}" && jQuery.trim(jQuery('#type-val').text()) == "{issue_type}") {
       jQuery('#tt_single_graph_orig').parent().parent().hide();
    }
});
</script>

Note: change {your_project_name} and {issue_type}.

ShaneM November 26, 2012

We are using Jira OnDemand so I don't have the ability to add custom code (to my knowledge at least).

Suggest an answer

Log in or Sign up to answer