Hi all,
Please it will be possible make this ?
If an issue have a custom field called SubArea and this field is filled with the value "Quality" and too i have a custom field called Classification and this field can be filled with value A or B.
If SubArea=Quality and Classification = A or B , i only can choose in my other custom fileld from the type user picker the names of the quality people. If SubArea or Classification was filled with any other value the user picker is free, i can choose any people.
Thanks in Advance
BR
Fabio
I think this is possible using Javascript OR Behaviours Plugin
You will have to check the values in SubArea if it is Quality then remove all the users from the user picker customfield other than some specified users
Below is a JS(works for 4.4) to remove user(option) from the user picker
<script type="text/javascript"> AJS.$("#customfield_xxxxx option").each(function() { if( AJS.$(this).val() == 'USER'){ var m; m=m+1; }else{ AJS.$(this).remove(); } }); </script>
EDIT : Sorry the above script does not work for customfield but for assignee field
Hi Mizan,
Thanks for your help.
Please, Do you have any scripts that works with custom fields?
Thanks in Advance
BR
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi all,
Please do you have any clue?
Thanks in Advance
BR
Fabio
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.