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
Hi there, I am newbie in atlassian development...
First of all, I tried to search and i found some topics in the comunity but the responses did not work for me.
I am developing a plugin for Jira Software Server with a top menú navigation with web-section(s) and web-item(s) and I would like to open the external links in new tabs or new windows.
I readed in the documentacion and some posts but the links always open in the same tab that jira is running.
This is part of my code...
<web-resource key="ExternalLinks-resources" name="ExternalLinks Web Resources">
<dependency>com.atlassian.auiplugin:ajs</dependency>
<resource type="download" name="ExternalLinks.css" location="/css/ExternalLinks.css"/>
<resource type="download" name="ExternalLinks.js" location="/js/ExternalLinks.js"/>
<resource type="download" name="images/" location="/images"/>
<context>ExternalLinks</context>
</web-resource>
<!-- Acces to ...-->
<web-item name="item-acceso-a" i18n-name-key="item-acceso-a.name" key="item-acceso-a" section="system.top.navigation.bar" class="arquia-menu" weight="1000">
<description key="item-acceso-a.description">Acces to...</description>
<label key="item-acceso-a.label"/>
<link linkId="item-acceso-a-link" />
</web-item>
<!-- Public ...-->
<web-section name="sectionPublic" i18n-name-key="section-public.name" key="section-public" location="item-acceso-a-link" weight="1000">
<description key="section-public.description">Public section</description>
<label key="section-public.label"/>
</web-section>
<!-- Google -->
<web-item name="Google" i18n-name-key="google.name" key="google" section="item-acceso-a-link/section-public" weight="1000">
<description key="google.description">Google</description>
<icon width="24" height="24">
<link linkId="google-icon">/icons/google.png</link>
</icon>
<label key="google.label"/>
<link linkId="google-link">https://www.google.es</link>
<param name="target" value="_blank" />
</web-item>
Thanks in advance!