Hi!
I just want to ask for some help. I made a web item in my atlassian-plugin.xml:
<web-item key="web-item-example" name="My Web Item" section="operations-delete" weight="200">
<description key="my-web-item-desc">General description</description>
<label>Push me</label>
<link linkId="my_web_item_link"/>
</web-item>
And i wrote my js like this:
AJS.toInit(function(){
AJS.$('#my_web_item_link').click(function(e){
alert("Documentation");
});
});
When i press the web item happening nothing. Can you help me?
I dont know why my code is not working.
I could not solve this problem with web-item, but if somebody needs help then use javascript and put a label into the more operationbar. My soultion is the next:
$('#opsbar-operations_more_drop').append('<div class="aui-dropdown2-section"><ul><li class="aui-list-item"><a href="#" id="listDialog"><span class="trigger-label">PD rendering</span></a></li></ul></div>');
* Open your Web Developer tools in Chrome / Firefox. Do you see any errors / warnings?
* Maybe AJS.toInit() is not executing your code at the right time. You could try it with
$(document).ready()
Or with
$(window).on('load', function() { //do something})
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is already solved. If i push the button, then the link automaticly load the main page, so it can not call the functions before it. To solve this problem you should put in the link "#". In this case the fucntions will be called (i tried it with only button, not web item).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Validate your expertise in managing Jira Service Projects for Cloud. Master configuration, optimize workflows, and manage users seamlessly. Earn global 🗺️ recognition and advance your career as a trusted Jira Service management expert.
Get Certified! ✍️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.