You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello,
I created 1 mandatory custom field.
I want it :
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.