/
Disabling inline edits in Jira

Disabling inline edits in Jira

Required apps

Power Scripts™ for Jira (server)

Level: BASIC

Problem

Latest versions of 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 Fields script:

// 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);
    }
}

That's all.


The result is the following:

Of course, you can specify groups of users to be applied over, you only need to adapt it to your purpose.

See also

Related content

Forbidding users to create some issue types
Forbidding users to create some issue types
More like this
Lock an issue - a better variant (Live Fields)
Lock an issue - a better variant (Live Fields)
More like this
Copy value from one custom filed to another when the value of the first custom field is changed
Copy value from one custom filed to another when the value of the first custom field is changed
Read with this
Disable inline edits
Disable inline edits
More like this
Copy field value from parent
Copy field value from parent
Read with this
Forbidding specific priorities for certain projects
Forbidding specific priorities for certain projects
More like this