I have a list of values in custom field of type selection list.
Based on the user logged in, I want to change the default selected value of that field.
Also, based on the user logged in, I want to change the list of values in that field.
Is it possible?
Hi @Meenakshi Nainwal,
This feature is not available out of the box in JIRA. I have an idea on how to solve it but I didn't try it.
You could add the following script to the announcement banner:
<script type="text/javascript"> (function($){ jQuery(document).ready(function($){ $(function(){ $.get(AJS.params.baseURL + "/rest/auth/1/session", function (data) { userName = data.name; // check groups $.get(AJS.params.baseURL + "/rest/api/2/user", {username: userName, expand: "groups"}, function (data) { var groups = data.groups; var groupItems = jQuery.map(groups.items, function (val, j) { if (val.name == "jira-administrators"){ var select = document.getElementById('customfield_10617');select.options.remove(0);//removes the first option } return val.name}); </script>
The above script should remove the first option of the custom field if the logged in user is in jira-administrators group. You can tweak it to do more options with the custom field.
Another possibility is to use Kepler Database Custom FIeld. This field takes values from database and arrange them as drop down select list. It is configured with SQL query from one of available data sources.
So you can define mapping of your values to users in DB, make sure this DB is available in JIRA as a data source. Then you can add database custom field with SQL query like the following:
select my_value from values_table where my_user = currentuser
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.