/
Disable inline edits
Disable inline edits
Problem
In Jira version 6.1.x, configuring inline edits is no longer supported.
Solution
You can recreate the functionality to disable inline edits in Jira by using a Live Fields configuration.
Note that in this solution some fields become unavailable.
To disable the inline edit, enter the following Power Scripts™ 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);
}
}
This code renders the following result.
You can adapt the functionality to your purpose by specifying groups of users.
, multiple selections available,
Related content
Making child fields read-only
Making child fields read-only
More like this
Making Child Fields Read-Only (Legacy)
Making Child Fields Read-Only (Legacy)
More like this
UI Manipulation
UI Manipulation
Read with this
lfAllowSelectOptions
lfAllowSelectOptions
Read with this
lfRestrictSelectOptions
lfRestrictSelectOptions
Read with this
Review and Create screen in Salesforce is not displaying the fields configured in Jira
Review and Create screen in Salesforce is not displaying the fields configured in Jira
More like this