I've written an own plugin according to https://developer.atlassian.com/server/jira/platform/creating-a-custom-field-type/
hiding custom field to users being member of a specific project role:
Parameter "hidden" is successfully accessible in the vm files.
I've managed to set the field to readonly in edit screen which works flawlessly.
#disable_html_escaping()
#customControlHeader ($action $customField.id $customField.name $fieldLayoutItem.required $displayParameters $auiparams)
#if ($hidden)
<input class="text" id="$customField.id" name="$customField.id" type="text" value="[hidden]" readonly="readonly"/>
#else
<input class="text" id="$customField.id" name="$customField.id" type="text" value="$textutils.htmlEncode($!value)"/>
#end
#customControlFooter ($action $customField.id $fieldLayoutItem.fieldDescription $displayParameters $auiparams)
Unfortunately in view screen there is always the little edit pencil behind the field which allows all users to see and edit the field.
Question:
How can I hide content and the edit button in view screen to non authorized users?
Hello @devzero0815 ,
What mapping have you got in your plugin.xml for the different screens?
There is a view, edit and xml mapping to a velocity template in the custom-field element.
Are you using the same template for each of these?
Note: This is due to the global Inline edit feature in Jira.
I have not had the need to disable editing based on groups so I am unsure if the view template will disable this but that would be the first place to check.
You need to consider how to find the element on the view screen using a css selector on a class
Presuming you have a javascript file included in your downloadable resources you can add a unique css class to your elements that you KNOW will not find with other fields on the screen
//untested
var foundElements = AJS.$('.your-custom-css-class')
if (foundElements.length){
foundElements.removeClass('editable-field');
}
You may also want to ask this question in the developer community rather than this community.
You can find the developer community here
Hi @Graham Twine ,
thank you very much for pointing to the JIRA inline edit feature.
By now I just disabled it and I get what I want.
Next I will also test your JS solution.
Best regards
--
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.