On clicking on Issue navigator, it gives some options like : search for issues, create issue, manage filters etc.
The create issue option is opening up a pop-up. We are using some java script and that stops functioning on pop-up screens. We have impleneted the blocking of pop-up from top - right most "Create Issue". As the Issue navigator contains the hidden field having the option of Create Issue, we are not able to block that.
Any quick help will be appreciated.
Thanks,
Swati
Hi,
We can hide the create issue.This can be done. You need to create a plugin and you need to add some java script code. With the above you can hide the create issue.I will post the code below.This is just a example to hide the create issue button, you can add more logic if you want.
jQuery(document).ready(function($) { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) { hideFunction(); }); hideFunction(); function hideFunction(){ AJS.$('#issues_new_issue_link_lnk').hide(); } });
your atlassian-plugin.xml will look like this
<web-resource key="hidecreateissue-js" name="createissue"> <description>show or hide create issue in menu </description> <resource name="hidecreateissue.js" type="download" location="templates/js/hidecreateissue.js" /> <context>atl.general</context> </web-resource>
Hope this helps
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
didn't work for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tried this in my banner announcement based on the above. No luck. Not working for me in JIRA 6.4.
<script type="text/javascript"> (function($) { AJS.$("#find_link").live("click", "#issues_new_issue_link", function(){ AJS.$("#issues_new_issue_link").live("mousedown", "#issues_new_issue_link_lnk", function(){ AJS.$('#issues_new_issue_link').removeClass('create-issue'); }); }); })(AJS.$); </script>
Ideas? Thanks. --Dave Luke
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does this also require a custom plug-in, like in the original recommendation?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Using JIRA 6.1.7, I used the below pasted into the Announcement Banner to disable the Issues>Create issues popup.
AJS.$("#find_link").live("click", "#issues_new_issue_link", function(){ AJS.$("#issues_new_issue_link").live("mousedown", "#issues_new_issue_link_lnk", function(){ AJS.$('#issues_new_issue_link').removeClass('create-issue'); }); });
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the screen shot, will tell you what to do in few mins.
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.
Hi,
Can you post me a screen shot to help you ?
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.