Table of Contents |
---|
Info | ||
---|---|---|
| ||
You will need the following JIRA plugins: Level: BASIC |
...
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 JJUPIN 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); } } |
...
.... 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.