@Nic Brough / @Jamie Echlin [Adaptavist]
Is it possible to conditionally set the color of a field on the Issue VIEW screen?
I was thinking something along the lines of:
def securityField = getFieldByName("Security Level")
def descField = getFieldByName("Security Level")
def securityValue = securityField.getValue()
if (securityValue == "Pinterest") { // Only Pinterest should be black.
securityField.setHelpText("Hello! <style>#security-val .note { color: #333;}</style>")
} else {
}
However, I've not been able to get this to work. It makes sense since I'm trying to set "Help Text" which isn't displayed on the view issue screen, but was hoping there may be another element or way to target the text color.
Any pointers?
Hi Trevor,
I think in your case you will need a web resource. In it's simplest form should be
(function ($) { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (event, $context, reason){ var field = $("#security-val"); field.prev().css("color", "red"); field.css("color", "red"); }); })(AJS.$);
Now you should play with your browser's developer tools to check in which reason, event, etc you want the element to be red.
regards, Thanos
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.