Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Info
titleRequired pluginsapps
You will need the following JIRA pluginsJira apps:
  1. Power Scripts for JIRA (former JJUPIN)Jira

Level: BASIC

Problem

Latest versions of JIRA Jira (the latest version, at the time of writing this article is 6.1.x) has removed the capability to configure inline edits. It seems that some users are missing it badly, so here's a little Live Fields configuration to put back the original behaviour.

This solution does not fit perfectly, since some fields are greyed-out, but IMHO is acceptable.

Solution


To disable the inline edit, here's the little Power Scripts for JIRA Live Jira Live Fields script:


Code Block
// Standard fields
string[] fields = 
{"project","summary","issueType","priority","affectedVersions","fixVersions","components","labels","environment","description","assignee","reporter","dueDate"};
 
//add here any other CF's you may want
fields += "customfield_10100";
 
//Only for view
if(argv["screen"] == "view") {
    for(string f in fields) {
        lfDisable(f);
    }
}

...