This is the code I'm using but it does not seem to work
<script type="text/javascript">
component = document.getElementById('component');
if (component) {
target = document.getElementById('customfield_13300');
// Hide the target field if component isn't (02) Build
if (component.value != '(02) Build') target.style.display='none';
component.onchange=function() {
if (this.value == '(02) Build') {
target.style.display = '';
// target.value="enter message here";
} else {
target.style.display='none';
}
}
}
</script>
Basically, if the component is not (02) Build, my Checkbox field should not be shown. Upon trying the above field, it is still showing on all cases.
customfield_13300 is a checkbox field.
Hi Marc,
May I ask if you have Script Runner for JIRA server installed (I am asking because one of the tags you used is the ScriptRunner key) ?
If that is the case that did you try to use a ScriptRunner Behaviour ?
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.