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 colleagues.
I have a problem with multiselect in my plugin.
This is default multiselect example from aui manual.
<form class="aui"> <select id="select2-example" name="select2-example" multiple=""> <option value="CONF">Confluence</option> <option value="JIRA">JIRA</option> <option value="BAM">Bamboo</option> <option value="JAG">JIRA Agile</option> <option value="CAP">JIRA Capture</option> <option value="AUI">AUI</option> </select> <script>AJS.$("#select2-example").auiSelect2();</script> </form>
I try put it in edit.vm of my customfield to add multiselect support, but got a list of choises of select list. Also i add code below in template.
$webResourceManager.requireResource("com.atlassian.auiplugin:aui-select2")
What i am doing wrong?
Hi Александр,
Since the Developer Community and User Community are currently split up, you'd probably get a quicker response if you post this question on the Developer Community.
Hope this helps.
Best,
Maarten
Thanks for your reply. I post my question there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And here's a link to that post for anyone who wants to answer or follow the discussion over there: https://community.developer.atlassian.com/t/aui-select-2-not-working-properly/3542
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
resolution on link abowe
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Александр,
it seems you are missing some of the external dependencies, which must be defined in your layout template.
<link rel="stylesheet" type="text/css" href="https://unpkg.com/@atlassian/aui@9.4.0/dist/aui//aui-prototyping.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sinon.js/1.15.4/sinon.js"></script>
<script src="https://unpkg.com/@atlassian/aui@9.4.0/dist/aui//aui-prototyping.js"></script>
Now it should work ;)
Greets
Julius
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.