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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi there,
After to upgrade to JIRA 8, a dialog is not being showed on top layer anymore.
I have a workflow transition screen, and JIRA 7 had a dialog showed over this screen. Now (jira 8) this dialog is under the transition screen (if I cancel the transition screen, So I can see the dialog that was hidden bihind).
This dialog is configured in a Behaviour (ScriptRunner) as below:
"function _apitAjaxGet2(check,optB,firstopening){ " + "\n" +
" var dialog = new AJS.Dialog({width: 500, height: 500,id: 'cf-dialog', closeOnOutsideClick: false}); " + "\n" +
" AJS."+"\$"+".ajax({" + "\n" +
" dialog.addHeader('Select issues to create a link with release issue'); dialog.addPanel('Panel 1', \"<p>\"+fieldsOutPut2+\"</p>\", 'panel-body');" + "\n" +
" dialog.addButton('Next', function (dialog) {_dialogCloseBtn2(optB);dialog.remove();});" + "\n" +
" dialog.gotoPage(0); dialog.gotoPanel(0); dialog.show(); " + "\n" +
" fieldsOutPut2 = ''; " + "\n" +
The dialog is working fine (I guess I do not need to change to dialog2).
Is there some parameter to set the dialog layer ?