Hi, I want to restrict some fields when a user ( belongs to a group ) create an issue. Also want to autocomplete version and fix version's field.
Can I do that?
The secuence should be something like this:
1. Create Issue
2. Only a few types of issue appears to select ( i would configuring this )
3. Then some fiend will be autocompleted ( i would configuring that too)
4. Create Issue.
Thanks!
2. Only a few types of issue appears to select ( i would configuring this )
You're looking for this (https://jira.atlassian.com/browse/JRA-1330).
3. Then some fiend will be autocompleted ( i would configuring that too)
Thanks, it seems that i'll have to do it in another way. I saw that screen schemes configuration also meet my needs.
Thanks to all !!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you mean, custom fields should be display for specific users/group? then try with javascript
<script type="text/javascript">
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {
hideField();
});
hideField();
function hideField(){
var user=getCurrentUserName();
if(isUserInGroup(user,'Developers')){
//to hide the Activity Tab
$("#customfield_10571").closest('div.field-group').hide();
}else {
AJS.$("#customfield_10571").closest('div.field-group').show();
}
}
function getCurrentUserName()
{
var user;
AJS.$.ajax({
url: "/rest/gadget/1.0/currentUser",
type: 'get',
dataType: 'json',
async: false,
success: function(data) {
user = data.username;
}
});
return user;
}
function getGroups(user)
{
var groups;
AJS.$.ajax({
url: "/rest/api/2/user?username="+user+"&expand=groups",
type: 'get',
dataType: 'json',
async: false,
success: function(data) {
groups = data.groups.items;
}
});
return groups;
}
function isUserInGroup(user, group){
var groups = getGroups(user);
for (i = 0; i < groups.length; i++){
if (groups[i].name == group){
return true;
}
}
return false;
}
</script>
check this
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.