Hi!
I have a custom field with this script
<script type="text/javascript"> impact = document.getElementById('customfield_10101'); emergency = document.getElementById('customfield_10123'); priority = document.getElementById('customfield_11603'); priority.disabled= 'true'; impact.onchange=function() { priority_choose(); } emergency.onchange=function() { priority_choose(); } function priority_choose(){ if (impact.value == 10108 && emergency.value == 10572) { priority.value = 14642; //HIGH and HIGH = CRITICAL } else if (impact.value == 10108 && emergency.value == 13205) { priority.va lue = 14643; //HIGH and MEDIUM = HIGH } else if (impact.value == 10108 && emergency.value == 10573) { priority.value = 14645; //HIGH and LOW = MEDIUM } else if (impact.value == 10109 && emergency.value == 10572) { priority.value = 14643; //MEDIUM and HIGH = HIGH } else if (impact.value == 10109 && emergency.value == 13205) { priority.value = 14645; //MEDIUM and MEDIUM = MEDIUM } else if (impact.value == 10109 && emergency.value == 10573) { priority.value = 14644; //MEDIUM and LOW = LOW } else if (impact.value == 10110 && emergency.value == 10572) { priority.value = 14645; //LOW and HIGH = MEDIUM } else if (impact.value == 10110 && emergency.value == 13205) { priority.value = 14644; //LOW and MEDIUM = LOW } else if (impact.value == 10110 && emergency.value == 10573) { priority.value = 14646; //LOW and LOW = PLANNED } else { priority.value = -1; //NONE; } } </script>
it is working in project A but when I used this custom field in project B, this operations does not work. My custom field is global, and I use this field with the others 2 to do a combination
Valeria,
At first glance I would ask if you could check if all 3 custom fields are actually available in the appropriate screens of project B.
Hi Mark, Yes! the 3 fields are in screens create,edit and view in project B.
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.