Hello,
We are in midst of testing Jira 5.2, we want thet create issue and edit issue actions would appear as ordinary screens instead of popups. How can we achive this?
Thanks,
Slava
to disable edit/create popup try with this
<script type="text/javascript"> JIRA.ViewIssueTabs.onTabReady(function() { AJS.$("#edit-issue").removeClass("issueaction-edit-issue"); AJS.$("#create_link").removeClass("create-issue"); }); </script>
It works for create issue, Edit Issue is still in the same situation.
Regards,
Slava
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try something like this
<script type="text/javascript"> jQuery(document).ready(function($) { AJS.$("#edit-issue").removeClass("issueaction-edit-issue"); AJS.$("#create_link").removeClass("create-issue"); }); </script>
or try with my updated answer!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Rambanam,
Thank You very much for your help!
Finaly it works, after I used your updated script.
With Best Regards,
Slava
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if something helped don't for got accept as a answer/voteup/like the comment(if it helped) it will help to other user to choose right answer as well it will close the issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
check this document
https://confluence.atlassian.com/display/JIRAKB/How+to+disable+Create+Issue+popup
another way is you can right click and open in new tab will work as you expected
check this, same question
https://answers.atlassian.com/questions/139929/normal-screen-while-logging-a-request-in-jira-5-2-2-instead-of-pop-up-dialog-screen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I have tryed the first way: adding the "<script type=
"text/javascript"
>
AJS.$(
"#create_link"
).removeClass(
"create-issue"
);
</script>" to the Announcement Banner, it works fine for Create Issue, but eddit issue still appears as popup. Is there a similar way to deal with Edit Issue?
Regards,
Slava
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.