Hi...
My first attempt at this. I would like to enable / disable a field for editing at a workflow step. For example we have a custom field "Requested Date and Time" after the issue has been raised we want to lock this field for editing or update. I can locate instances of how to lock an issue based on permission but I need to restrict the ability to update specific fields without preventing the remaining fields from being updated.
Any ideas?
Thanks Lyn
Hi Lyn,
You can use javascript for the purpose.
AJS.toInit(function(){
var field= document.getElementById('customfield_xxxxx');
var workflowSubmit=document.getElementById('issue-workflow-transition-submit');
field.disabled=true;
workflowSubmit.onclick=function() {
field.disabled=false;
}
});
We didn't actually implement this, as I couldn't get the approval from the internal owner of JIRA. So I am not sure if would have worked or not. I marked it as answered (from memory) as we are relying on transitions and JIRA not showing in View fields that do not have values.
Thanks for the help though
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Lyn,
Did this actually work - as it is marked as an Answer? And how did You implement it..
BR,
Normann
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.