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.