Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Hiding a custom field in the issue creation popup

Hello,

I created 1 mandatory custom field.

I want it :

  • to be hidden in the issue screen creation but setted with the value of another field for the project P1
  • not to exist in the issue screen creation for the project P2

I rattached the project P1 to the configuration field CF1 by setting the custom field mandatory and visible.
I rattached the project P2 to the configuration field CF2 by setting the custom field masked.

I added Javascript code to hide the custom field and to set the value. Below is the code for hiding the
custom field :

<script>
var selected_acte_customfield = "customfield_12902";
var actes_customfield = "customfield_12800";
function jqid (id) {
return (!id) ? null : '#' + id.replace(/(:|\.|\[|\]|,)/g, '\\$1');
}

AJS.$(jqid(selected_acte_customfield)).closest('div.field-group').hide();

function manageSAU(context) {
if (typeof context != 'undefined') {
var actes = AJS.$(context).find(jqid(actes_customfield));
var selected_acte = AJS.$(context).find(jqid(selected_acte_customfield));
changeSAU(actes, selected_acte);
} else {
var actes = AJS.$(jqid(actes_customfield));
var selected_acte = AJS.$(jqid(selected_acte_customfield));
changeSAU(actes, selected_acte);
}
}
function changeSAU(actes, selected_acte) {
actes.on( "change", function() {
var selected;
if (actes.length==1) {
selected = actes.find('option:selected').text();
} else {
selected = actes[0].selectedOptions.item(0).innerText;
}
selected_acte.val(selected);
selected_acte.trigger( "change" );
});
}

AJS.toInit(function(){
JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) { manageSAU(context); });
manageSAU();
});
</script>

 

When I select the project P1 and click the Create Issue button, the field does not appear in the window.

When I select the project P2 and click the Create Issue button, and, inside the window, I select the project P1, the field appears in the window.

How can I do to hide the field when I change project from P2 to P1 ?

Thanks for your interest.

1 answer

Hi 

did you try scriptrunner behaviour

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events